/* Стили для выпадающего списка мессенджеров в callback модалке */
.messenger-options {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    top: 42px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    border: 1px solid #ccc;
}

.messenger-options .option {
    display: flex;
    align-items: center;
    padding: 8px 0px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
    cursor: pointer;
}

.messenger-options .option:hover {
    background-color: #f5f5f5;
}