.developer-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}

.developer-header {
    background: var(--primary-color);
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.developer-header .back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.developer-header h1 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.developer-container {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.dev-section {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header i {
    color: var(--primary-color);
    font-size: 18px;
}

.section-header .refresh-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.3s ease;
}

.section-header .refresh-btn:hover {
    transform: scale(1.1);
}

.dev-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 12px;
}

.dev-item:last-child {
    border-bottom: none;
}

.dev-item.full-width {
    flex-direction: column;
}

.dev-item .label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    min-width: 140px;
    flex-shrink: 0;
}

.dev-item .value {
    font-size: 14px;
    color: #333;
    text-align: right;
    word-break: break-word;
    font-family: 'Courier New', monospace;
}

.dev-item.full-width .value {
    text-align: left;
    width: 100%;
}

.dev-item .value.clickable {
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dev-item .value.clickable:hover {
    text-decoration: underline;
}

.dev-item .value.clickable i {
    margin-left: 6px;
    font-size: 12px;
    opacity: 0.6;
}

.dev-item .value.success {
    color: #4caf50;
    font-weight: 600;
}

.dev-item .value.error {
    color: #f44336;
    font-weight: 600;
}

.dev-item .value.warning {
    color: #ff9800;
    font-weight: 600;
}

.dev-item.storage-keys {
    flex-direction: column;
    align-items: flex-start;
}

.keys-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.key-item {
    background: #f5f5f5;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #666;
    font-family: 'Courier New', monospace;
}
