/* Custom CSS for Bahosi Hospital Feedback System */

/* Myanmar Font Support */
@font-face {
    font-family: 'Pyidaungsu';
    src: url('../fonts/Pyidaungsu.ttf') format('truetype');
}

@font-face {
    font-family: 'Myanmar3';
    src: url('../fonts/mmrtext.ttf') format('truetype');
}

/* Base Styles */
body {
    font-family: 'Pyidaungsu', 'Myanmar3', 'Noto Sans Myanmar', sans-serif;
    line-height: 1.6;
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Custom Button Styles */
.btn-hospital {
    background: linear-gradient(to right, #0d6efd, #198754);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-hospital:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Rating Stars */
.rating-stars {
    color: #ffc107;
    font-size: 1.2em;
}

.rating-stars .bi-star {
    color: #dee2e6;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
    }
}

/* Loading Spinner */
.spinner-hospital {
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 3px solid #0d6efd;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Customization */
.alert-hospital {
    border-radius: 10px;
    border-left: 5px solid;
}

.alert-hospital-info {
    border-left-color: #0dcaf0;
}

.alert-hospital-success {
    border-left-color: #198754;
}

.alert-hospital-warning {
    border-left-color: #ffc107;
}

/* Table Customization */
.table-hospital th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

/* Form Validation */
.form-control.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .step-card {
        margin-bottom: 15px;
    }
}