/* Modern Profile Page Styles */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Modern Profile Styles */
.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2CBEF4, #293241);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(44, 190, 244, 0.3);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 4px 0;
}

.profile-email {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
}

.edit-btn {
    background: #00C0F9;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 192, 249, 0.3);
    width: auto;
    min-width: 200px;
    margin: 0;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.edit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 192, 249, 0.4);
    background: #00D4FF;
}

.actions-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.actions-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
    text-align: center;
}

.actions-description {
    color: #6B7280;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.6;
}

.role-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
}

.role-admin {
    background-color: #2CBEF4;
    color: white;
}

.role-user {
    background-color: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-card {
        padding: 24px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 16px;
    }
}