﻿body {
    background-color: #f4f5f8;
}

.card {
    border: none;
    text-decoration: none;
    box-shadow: 0 1px 10px rgba(22,33,54,.16)
}

.telephone:hover {
    color: blue;
    text-decoration: underline;
}
/* модальное окно */
.city-modal .modal-dialog {
    max-width: 400px;
}

.city-list-container {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 10px;
}

.city-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.city-item {
    text-decoration: none;
    color: #212529;
    padding: 8px 12px;
    border-radius: 4px;
}

    .city-item:hover {
        background-color: #f8f9fa;
        cursor: pointer;
    }
/* Стили для скроллбара */
.city-list-container::-webkit-scrollbar {
    width: 8px;
}

.city-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.city-list-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

    .city-list-container::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
/* модальное окно */
.contact-info i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #dc3545;
}

@media screen and (min-width: 600px) {
    .imgError {
        width: 400px;
    }
}

@media screen and (max-width: 600px) {
    .imgError {
        width: 80%;
    }
}