
/* =========================================
   CUSTOMER DETAIL PAGE STYLES
   ========================================= */
   .customer-detail-page {
    width: 100%;
    margin: 0 auto;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.legit-page-content {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Page Avatar */
.legit-page-avatar-section {
    text-align: center;
    margin-bottom: 20px;
}

.legit-page-avatar-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.legit-page-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.legit-page-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}

/* Name and Role */
.legit-page-name-section {
    text-align: center;
    margin-bottom: 30px;
}

.legit-page-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.legit-page-role-badge {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 198, 255, 0.3);
}

/* Action Buttons */
.legit-page-actions-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 7px;
}

.legit-page-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 17px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.legit-page-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Page Grid Layout */
.legit-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legit-page-col-left,
.legit-page-col-right {
    flex: 1;
    min-width: 350px;
}

/* Social List */
.legit-page-social-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
    .legit-page-grid {
        gap: 10px;
        flex-direction: column;
    }
    
    .legit-page-col-left,
    .legit-page-col-right {
        min-width: 100%;
    }
    
    .legit-page-actions-row {
        /* flex-direction: column; */
        /* align-items: center; */
    }
    
    .legit-page-action-btn {
        width: 100%;
        max-width: 300px;
        padding: 8px 0px;
    }
}
