/* Dashboard Page Styles */

.profile-container {
    padding: 8rem 5% 4rem;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 80vh;
}

#dashboard-section {
    display: none;
    animation: slideUp 0.8s ease-out;
}

.profile-header {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.logout-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}
.profile-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    color: #10b981;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

/* Submission Log Item Custom styling */
.submission-log-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: #f1f5f9 !important;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem 2rem;
        gap: 1.5rem;
    }
    .profile-info h1 {
        text-align: center;
        font-size: 2rem;
    }
    .profile-info p {
        text-align: center;
        font-size: 1rem;
    }
    .status-indicator {
        margin: 1rem auto 0;
    }
    .logout-btn {
        top: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
@media (max-width: 480px) {
    .profile-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    .profile-info h1 {
        font-size: 1.8rem;
    }
}
