html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Custom hospital styles */
.bg-hospital-blue {
    background-color: #1a73e8;
}

.text-hospital-blue {
    color: #1a73e8;
}

.card-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

    .card-hover:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.btn-rounded {
    border-radius: 30px;
}

/* Doctor card styles */
.doctor-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

    .doctor-card:hover {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

/* Appointment form styles */
.appointment-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 30px;
}

/* Custom alerts */
.alert-hospital {
    border-left: 4px solid #1a73e8;
    background-color: #f8f9fa;
}

/* Loading spinner */
.spinner-hospital {
    color: #1a73e8;
}

/* Patient dashboard */
.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    height: 100%;
}

/* Emergency button */
.btn-emergency {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

    .btn-emergency:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
        color: white;
    }

/* Animation for emergency banner */
.pulse-animation {
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
@keyframes pulseAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

