/* Profile Page Styles */
.profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.profile-sidebar {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    height: fit-content;
    border: 1px solid var(--border-color);
}

.profile-card {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: var(--bg-color);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.profile-name {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.profile-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-join-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 15px;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    width: 100%;
}

.profile-menu-btn:hover,
.profile-menu-btn.active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.profile-menu-btn.active {
    background: var(--accent-color);
    color: #fff;
}

.profile-menu-btn.logout:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.profile-menu-btn.admin-btn {
    border: 1px solid rgba(241, 196, 15, 0.3);
    background: rgba(241, 196, 15, 0.05);
}

.profile-menu-btn.admin-btn:hover {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.1);
}

.profile-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    min-height: 500px;
}

.tab-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert.success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.alert.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

@media (max-width: 768px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}