
/* Bluba Tutor Theme Overrides */
:root {
    --primary-color: #7e57c2; /* purpura */
    --secondary-color: #d1c4e9; /* crema pastel */
    --tertiary-color: #faf0ff; /* rosa */
}

/* ========================================
   Message Center - Ticket Creation Styles
   ======================================== */

/* Empty State Icon */
.empty-state-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    margin: 0 auto;
}

.empty-state-icon i {
    font-size: 3.5rem;
    color: white;
}

/* Info Cards */
.info-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(126, 87, 194, 0.15);
    transform: translateY(-5px);
}

.info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin: 0 auto;
}

.info-card-icon i {
    font-size: 1.75rem;
    color: white;
}

/* Empty State Container */
.empty-state-tickets {
    max-width: 900px;
    margin: 0 auto;
}

/* CTA Button Hover Effect */
.btn-primary.btn-lg:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(126, 87, 194, 0.3);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .empty-state-icon {
        width: 90px;
        height: 90px;
    }
    
    .empty-state-icon i {
        font-size: 2.5rem;
    }
    
    .info-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-card-icon i {
        font-size: 1.5rem;
    }
}
/* ==========================================
   Patient/Consultant Header Styles
   ========================================== */

.patient-header-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.patient-avatar {
    flex-shrink: 0;
}

.avatar-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.avatar-placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.patient-info {
    flex-grow: 1;
}

.patient-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.patient-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

.detail-item {
    display: flex;
    align-items: center;
}

.detail-item i {
    color: #667eea;
    margin-right: 0.5rem;
}

/* Responsive adjustments for patient header */
@media (max-width: 991.98px) {
    .patient-header-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .patient-details {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-item {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .avatar-image,
    .avatar-placeholder {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }

    .patient-details {
        padding: 0.75rem;
    }
}
