.form-iframe {
    border: none;
    min-height: 500px;
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
}

.form-iframe::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.disruptions-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 100;
}

.disruptions-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.disruptions-modal-content {
    background-color: white;
    width: 400px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
    position: relative;
    max-height: 80%;
    z-index: 2;
}

.disruptions-modal-btn-close {
    cursor: pointer;
    color: white;
    display: flex;
    justify-content: space-between;
    background-color: #343434;
    padding: 1.4rem;
    gap: 8px;
    align-items: center;
}

.disruptions-modal-btn-close svg {
    width: 20px;
}

.disruptions-modal-btn-close__text {
    padding-top: 3px;
}

.show-disruptions-modal {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s, visibility 0.5s;
}

/* header */
.disruptions-modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding-left: 1.4rem;
}

.disruptions-modal-header h2 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .disruptions-modal-content {
        right: 0;
        width: 100%;
    }
    .show-disruptions-modal {
        z-index: 1000;
    }
}