/* Emergency Contact Widget Styles */
.emergency-contact-widget {
    background-color: #fff;
    padding: 15px;
    border: 2px solid #dc3545;
    border-radius: 5px;
    margin-bottom: 20px;
}

.emergency-icon {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.emergency-title {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
}

.emergency-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #dc3545;
    font-size: 14px;
    line-height: 1.8;
}

.emergency-list li {
    margin-bottom: 8px;
    color: #dc3545;
}

.emergency-list strong {
    font-weight: bold;
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .emergency-contact-widget {
        padding: 12px;
    }
    
    .emergency-title {
        font-size: 16px;
    }
    
    .emergency-list {
        font-size: 13px;
    }
}