﻿
.account-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.8);
    padding: 2rem;
    border-radius: 8px;
}

.user-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.user-details {
    flex: 1;
}

    .user-details h3 {
        margin: 0 0 0.5rem 0;
        color: #e6e6e9;
    }

    .user-details p {
        margin: 0.25rem 0;
        color: #999;
    }

.user-id {
    font-family: monospace;
    font-size: 0.85rem;
    color: #666;
}

.verified-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 4px 12px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.unverified-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 4px 12px;
    background: #f59e0b;
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-premium,
.btn-primary {
    padding: 12px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}
    .btn-premium:hover,
    .btn-primary:hover {
        background: #4f46e5;
    }

.btn-premium {
    background: #c9a227;
}

.btn-danger {
    padding: 12px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

    .btn-danger:hover {
        background: #b91c1c;
    }

    .btn-danger:disabled {
        background: #666;
        cursor: not-allowed;
    }

.loading {
    text-align: center;
    color: #6366f1;
    font-weight: 600;
    padding: 2rem;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.profile-photo {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
}

.profile-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    border: 3px solid #6366f1;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: start;
    align-items: center;
}

    .info-row label {
        color: lightsteelblue;
        font-weight: 600;
        min-width: 100px;
    }

    .info-row span {
        color: ghostwhite;
    }

.email-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.verified-badge {
    padding: 4px 12px;
    background: #10b981;
    color: white;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-link-small {
    background: none;
    border: none;
    color: #6366f1;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
    padding: 0;
}

.account-actions, .sharing-section {
    padding: 1.5rem 0;
    justify-content: center;
}

    .account-actions h3, .sharing-section h3, .danger-zone h3 {
        color: ghostwhite;
        margin: 0 0 1rem 0;
        font-size: 18px;
    }

.share-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

    .share-option strong {
        color: ghostwhite;
        display: block;
    }

    .share-option p {
        color: lightsteelblue;
        margin: 0;
        font-size: 0.9rem;
    }

.danger-zone {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}

    .danger-zone h3 {
        color: #dc2626;
    }

.btn-warning {
    padding: 12px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 0.5rem;
}

    .btn-warning:hover {
        background: #d97706;
    }

.sign-out-btn {
    margin-top: 1.5rem;
    width: 100%;
}