/* (Alle CSS van de vorige stap blijft hetzelfde) */
/* ... */

/* Nieuwe stijlen voor de alarmschermen */
.screen { 
    display: none; 
    width: 100%; 
    height: 100%; 
    flex-direction: column; 
}
.screen.active { 
    display: flex; 
}

.alarm-screen-content {
    padding: 30px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.pulsating-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

.pulsating-icon svg {
    width: 50px;
    height: 50px;
    fill: #fff;
}

.alarm-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.alarm-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cancel-button, .action-button, .ignore-button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Stijlen specifiek voor het ZENDER-scherm */
#sender-screen { background-color: #007bff; }
#sender-screen .pulsating-icon { background-color: rgba(255,255,255,0.2); }
#sender-screen .cancel-button { background-color: rgba(255,255,255,0.3); color: #fff; }

/* Stijlen specifiek voor het ONTVANGER-scherm */
#receiver-screen { background-color: #dc3545; }
#receiver-screen .pulsating-icon { background-color: rgba(255,255,255,0.2); }
#receiver-screen .map-snippet {
    width: 100%;
    height: 150px;
    background-image: url('https://i.imgur.com/k932P7S.png');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 3px solid #fff;
}
#receiver-screen .action-button { background-color: #fff; color: #dc3545; }
#receiver-screen .ignore-button { background: none; color: #fff; opacity: 0.8; text-decoration: underline; }

/* Animatie voor de pulserende cirkel */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Stijl voor de simulatieknop */
.simulation-controls {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin-top: 10px;
}
.simulation-controls button {
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
}