#azs-map-root {
    min-height: 400px;
    z-index: 1;
}

.azs-sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    transform: translateY(100%);
    transition: transform .25s ease-out;
    max-height: 75%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.azs-sheet-open {
    transform: translateY(0);
}

.azs-sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 8px auto 0;
    flex-shrink: 0;
}

.azs-sheet-content {
    padding: 12px 16px 20px;
    overflow-y: auto;
}

.azs-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.azs-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #888;
    padding: 0 0 0 10px;
}

.azs-fav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.azs-fav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 10px;
    cursor: pointer;
}

.azs-fav-item:active {
    background: #eee;
}

.azs-fav-item-name {
    font-size: 14px;
    color: #222;
}

.azs-fav-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 2px 6px;
}

.azs-popup {
    font-size: 14px;
    line-height: 1.4;
    max-width: 260px;
}

.azs-fav-btn {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #f1c40f;
    padding: 0 0 0 6px;
}

.azs-btn {
    padding: 9px 16px;
    border: none;
    border-radius: 22px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    margin-bottom: 4px;
}

.azs-btn-yes { background: #2ecc71; }
.azs-btn-limit { background: #f1c40f; color: #333; }
.azs-btn-no { background: #e74c3c; }

/* Фирменные цвета (жёлто-чёрные, в тон логотипа) */
.azs-btn-confirm { background: #FFD400; color: #111; font-weight: 700; }
.azs-btn-cancel { background: #FFF3B8; color: #4a4a4a; }

.azs-btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
}

.azs-link-btn {
    background: none;
    border: none;
    color: #2b6cb0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
}

.azs-chip {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border: 1px solid #ccc;
    border-radius: 16px;
    background: #f5f5f5;
    color: #333;
    font-size: 12px;
    cursor: pointer;
}

.azs-chip-active {
    background: #FFD400;
    color: #111;
    border-color: #e6bf00;
    font-weight: 600;
}

.azs-locate-btn {
    background: #fff;
    border: 2px solid rgba(0,0,0,.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    white-space: nowrap;
    margin-bottom: 6px;
}

.azs-locate-icon {
    font-size: 20px;
    line-height: 1;
}

.azs-favorites-btn {
    font-size: 18px;
}

.azs-locate-btn:disabled {
    opacity: .6;
    cursor: default;
}

.azs-user-location-marker {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.4));
}

.azs-user-pin {
    font-size: 28px;
    line-height: 1;
}

.azs-city-search {
    background: #fff;
    border: 2px solid rgba(0,0,0,.2);
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
}

.azs-city-input {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px 8px;
    font-size: 13px;
    width: 140px;
}

.azs-city-status {
    font-size: 11px;
    color: #777;
    margin-top: 2px;
}

.azs-legend {
    background: #fff;
    border: 2px solid rgba(0,0,0,.2);
    border-radius: 10px;
    padding: 6px 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,.2);
    font-size: 12px;
}

.azs-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
    white-space: nowrap;
}

.azs-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.2);
    flex-shrink: 0;
}
