/* Account Page */
.account-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #dadce0;
}

.account-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0a1628;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 500;
    flex-shrink: 0;
}

.account-name {
    font-family: 'Google Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 4px;
}

.account-email {
    font-size: 14px;
    color: #5f6368;
}

.account-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #dadce0;
    margin-bottom: 32px;
}

.account-tab {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 400;
    color: #5f6368;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.15s;
}

.account-tab:hover {
    color: #202124;
}

.account-tab.active {
    color: #01875f;
    border-bottom-color: #01875f;
}

.account-section {
    margin-bottom: 40px;
}

.account-section-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 8px;
}

.account-section-desc {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 24px;
    line-height: 1.6;
}

.account-subsection-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 16px;
}

.account-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.account-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-field label {
    font-size: 13px;
    font-weight: 500;
    color: #3c4043;
}

.account-field input,
.account-field textarea {
    padding: 10px 14px;
    border: 1px solid #dadce0;
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    color: #202124;
    background: #fff;
    transition: border-color 0.15s;
    outline: none;
    resize: vertical;
}

.account-field input:focus,
.account-field textarea:focus {
    border-color: #000;
}

.account-pass-wrap {
    position: relative;
}

.account-pass-wrap input {
    width: 100%;
    padding-right: 44px;
    padding: 10px 44px 10px 14px;
    border: 1px solid #dadce0;
    border-radius: 0;
    font-size: 14px;
    font-family: inherit;
    color: #202124;
    outline: none;
}

.account-pass-wrap input:focus {
    border-color: #000;
}

.account-pass-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #5f6368;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.account-btn {
    margin-top: 20px;
    padding: 10px 28px;
    width: 200px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.account-btn:hover:not(:disabled) {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.account-btn:disabled {
    background: #e0e0e0;
    color: #9aa0a6;
    border-color: #e0e0e0;
    opacity: 1;
    cursor: not-allowed;
}

.account-msg {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
}

.account-msg.success {
    background: rgba(1,135,95,0.1);
    border: 1px solid rgba(1,135,95,0.3);
    color: #01875f;
}

.account-msg.error {
    background: rgba(255,60,60,0.1);
    border: 1px solid rgba(255,60,60,0.3);
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .account-page {
        padding: 24px 16px 60px;
    }

    .account-form-grid {
        grid-template-columns: 1fr;
    }

    .account-name {
        font-size: 20px;
    }

    .account-avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
