/* Support dialog */
.support-dialog {
    padding: 10px 20px 20px;
    font-size: 14px;
    color: #333;
}

/* Schedule banner */
.support-schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    border-left: 4px solid #3a7bd5;
    border-radius: 4px;
    padding: 10px 14px;
    margin-bottom: 20px;
    font-size: 13px;
}

.support-schedule__icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* Contact list */
.support-contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.support-contacts__item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.support-contacts__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.support-contacts__label {
    font-weight: 600;
    white-space: nowrap;
}

.support-contacts__value {
    color: #3a7bd5;
    text-decoration: none;
}

.support-contacts__value:hover {
    text-decoration: underline;
}

.support-contacts__note {
    color: #888;
    font-size: 12px;
    font-style: italic;
}