/* General Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
} */

/* Container Styling */
.alert-container {
    
    background-color: #fff;
    padding: 30px;
    text-align: center;
    border: 5px solid #000;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: red;
    margin-bottom: 20px;
}

.warning-header h1 {
    font-size: 50px;
    font-weight: bold;
}

.warning-icon {
    width: 50px;
    height: 50px;
}

h2 {
    font-size: 25px;
    color: #000;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
}

.not-safe {
    font-weight: bold;
    color: red;
}

.instructions {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
}

.phone-number {
    font-size: 30px;
    color: green;
    font-weight: bold;
    margin: 10px 0;
}

.priority {
    font-size: 16px;
    font-style: italic;
    color: #666;
}

.footer-info {
    margin-top: 20px;
    font-size: 14px;
    color: #000;
}

.phone-number-bottom {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.phone-number-bottom span {
    font-weight: bold;
}
