.map-shell {
    width: 100%;
}

.map-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.map-heading h1 {
    font-size: 1.5rem;
    margin: 0;
}

.map-heading p,
.map-help {
    color: #52616b;
    margin: 0.15rem 0 0;
}

.map-help {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.map-status {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    border-radius: 999px;
    color: #1b5e20;
    font-size: 0.875rem;
    padding: 0.35rem 0.75rem;
}

.map-status-error {
    background: #ffebee;
    border-color: #ef9a9a;
    color: #b71c1c;
}

.nws-alerts {
    background: #ffffff;
    border: 1px solid #ced4da;
    border-left: 5px solid #b71c1c;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
}

.nws-alerts-heading {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

    .nws-alerts-heading h2 {
        font-size: 1rem;
        margin: 0;
    }

.nws-alert-count {
    background: #f4e4e4;
    border-radius: 999px;
    color: #8b0000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
}

.nws-alert-list {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0.65rem 0 0;
    max-height: 12rem;
    overflow-y: auto;
    padding: 0;
}

.nws-alert-item {
    border-top: 1px solid #e1e6ea;
    display: grid;
    gap: 0.15rem;
    padding-top: 0.5rem;
}

    .nws-alert-item:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .nws-alert-item strong {
        color: #8b0000;
        font-size: 0.9rem;
    }

    .nws-alert-item span,
    .nws-alert-item small {
        color: #52616b;
        font-size: 0.8rem;
    }

.nws-alert-empty,
.nws-alert-additional {
    color: #52616b;
    font-size: 0.85rem;
}

.nws-alert-error {
    color: #b71c1c;
    font-size: 0.85rem;
    font-weight: 700;
}


#azureMap {
    border: 1px solid #ced4da;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
    height: calc(100vh - 330px);
    min-height: 480px;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 576px) {
    .map-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    #azureMap {
        height: calc(100vh - 250px);
        min-height: 400px;
    }
}
