/* CUSTOM CSS */

#alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    z-index: 1000;
}

.alert {
    padding: 15px 20px;
    border-radius: 6px;
    position: relative;
}

.dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

#select_municipality {
    width: max-content;
    cursor: pointer;
    position: relative;
}

.dropdown-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.dropdown-arrow {
    position: absolute;
    bottom: 0;
    top: 0;
    right: -16px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #333;
    transition: transform .2s ease;
}

.dropdown-title.active .dropdown-arrow {
    transform: rotate(180deg);
}

.municipality-dropdown {
    display: none;
    position: absolute;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
    min-width: 220px;
    z-index: 1000;
}

.municipality-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 6px 0;
    flex-direction: column;
}

.municipality-dropdown li a {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
}

.municipality-dropdown li a:hover {
    background: #f5f5f5;
}

.empty-state {
    max-width: 500px;
    margin: 80px auto;
    text-align: center;
    padding: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
}

.empty-state h2 {
    margin-bottom: 10px;
}

.empty-state p {
    margin-bottom: 20px;
    color: #666;
}

/* Dropzone */
.dropzone {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}