﻿/* Auto-generated CSS file for CustomerService views */
/* Generated on: 2025-08-05 11:18:37 */
/* Project: Member */

/* From: List.cshtml */
.cs-header {
background: var(--primary-color);
color: white;
padding: 20px 15px;
border-radius: 8px;
margin-bottom: 20px;
text-align: center;
}
        
.cs-header-title {
font-size: 22px;
font-weight: bold;
margin-bottom: 8px;
}
        
.cs-header-subtitle {
font-size: 14px;
opacity: 0.85;
}
        
.cs-quick-actions {
display: flex;
justify-content: space-around;
margin-bottom: 20px;
flex-wrap: wrap;
}
        
.cs-quick-action-item {
display: flex;
flex-direction: column;
align-items: center;
width: 80px;
margin: 0 5px 15px;
}
        
.cs-quick-action-icon {
width: 50px;
height: 50px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
color: white;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
        
.cs-quick-action-label {
font-size: 12px;
text-align: center;
color: #666;
font-weight: 600;
}
        
.cs-section-title {
font-size: 16px;
font-weight: bold;
margin: 15px 0 10px;
color: #444;
}
        
.cs-profile-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 1rem;
padding: 0.5rem;
}

.cs-profile-card {
background: white;
text-align: center;
border-radius: 12px;
padding: 15px 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s ease;
}
        
.cs-profile-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cs-profile-image-container {
width: 80px;
height: 80px;
margin: 0 auto 0.5rem;
border-radius: 50%;
overflow: hidden;
border: 3px solid #f0f0f0;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cs-profile-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.cs-profile-content {
padding: 5px 0;
}

.cs-profile-name {
font-size: 1em;
font-weight: bold;
margin-bottom: 0.3rem;
color: #333;
}

.cs-profile-bio {
color: #666;
font-size: 0.8em;
margin-bottom: 8px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
line-height: 1.3;
}
        
.cs-profile-status {
font-size: 11px;
padding: 3px 8px;
border-radius: 10px;
display: inline-block;
font-weight: 600;
}
        
.cs-status-online {
background-color: #eefaf0;
color: #28a745;
}
        
.cs-status-busy {
background-color: #fff4e6;
color: #fd7e14;
}
        
.cs-status-offline {
background-color: #f5f5f5;
color: #6c757d;
}
        
.cs-faq-container {
margin-top: 20px;
}
        
.cs-faq-item {
margin-bottom: 10px;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
        
.cs-faq-question {
padding: 12px 15px;
background-color: #f9f9f9;
font-weight: 600;
color: #444;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
}
        
.cs-faq-answer {
padding: 15px;
background-color: white;
font-size: 14px;
color: #666;
border-top: 1px solid #eee;
}
        
.cs-contact-methods {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 15px;
}
        
.cs-contact-method {
width: 48%;
background-color: white;
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
display: flex;
align-items: center;
}
        
.cs-contact-icon {
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 10px;
color: white;
}
        
.cs-contact-details {
flex: 1;
}
        
.cs-contact-label {
font-size: 12px;
color: #666;
margin-bottom: 2px;
}
        
.cs-contact-value {
font-size: 14px;
font-weight: 600;
color: #333;
}
        
        /* Loading overlay styles */
.cs-loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
}
        
.cs-loading-content {
background: white;
padding: 30px 40px;
border-radius: 15px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
        
.cs-loading-spinner {
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-top: 4px solid #01B0FF;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 15px;
}
        
.cs-loading-text {
color: #666;
font-size: 16px;
font-weight: 500;
}
        
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
        
        /* Profile card loading state */
.cs-profile-card.loading {
opacity: 0.7;
cursor: wait !important;
}

