

/* Start:/bitrix/templates/main/components/bitrix/form/template1/bitrix/form.result.new/.default/style.css?17548834055836*/
/* Основная таблица формы */
table.form-table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

/* Ячейки таблицы */
table.form-table th, 
table.form-table td {
    border: 1px solid #e0e6ed;
    padding: 12px 15px;
    vertical-align: middle;
}

/* Заголовки столбцов */
table.form-table th {
    background: linear-gradient(to bottom, #f8fafc, #e6edf4);
    color: #2d3748;
    font-weight: 600;
    text-align: left;
    text-transform: capitalize;
    border-bottom: 2px solid #d3dce6;
}

/* Основные ячейки */
table.form-table td {
    background-color: #fff;
    color: #4a5568;
}

/* Чередование строк для лучшей читаемости */
table.form-table tr:nth-child(even) td {
    background-color: #f9fafc;
}

/* Таблица фильтров */
table.form-filter-table {
    background-color: white;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

table.form-filter-table th {
    background: linear-gradient(to bottom, #f0f4f8, #d8e2ee);
    text-align: center;
    font-weight: 600;
    color: #2c5282;
    padding: 8px 12px;
    border-bottom: 2px solid #cbd5e0;
}

table.form-filter-table td, 
table.form-filter-table th {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
}

table.form-filter-table td {
    vertical-align: middle;
    background-color: #fff;
}

/* Состояния фильтров */
.form-filter-none {
    display: none;
}

.form-filter-inline {
    display: inline-block;
    margin-right: 8px;
}

/* Стили для текста ответов */
.form-anstext {
    color: #2f855a;
    font-weight: 500;
}

.form-ansvalue {
    color: #c53030;
    font-weight: 600;
}

/* Индикаторы фильтров */
.form-filteron {
    color: #c53030;
    font-weight: 600;
}

.form-filteroff {
    color: #2f855a;
}

/* Эффекты при наведении */
table.form-table tr:hover td {
    background-color: #f0f7ff;
}

/* Адаптивность */
@media (max-width: 768px) {
    table.form-table, 
    table.form-filter-table {
        font-size: 13px;
    }
    
    table.form-table th, 
    table.form-table td,
    table.form-filter-table th, 
    table.form-filter-table td {
        padding: 8px 10px;
    }
}

/* Стили для полей ввода */
table.form-table input[type="text"],
table.form-table input[type="password"],
table.form-table input[type="email"],
table.form-table input[type="number"],
table.form-table input[type="tel"],
table.form-table input[type="date"],
table.form-table input[type="time"],
table.form-table input[type="url"],
table.form-table select,
table.form-table textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #374151;
    background-color: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Фокус-состояние для полей */
table.form-table input:focus,
table.form-table select:focus,
table.form-table textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Стили для выпадающих списков */
table.form-table select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 32px;
}

/* Стили для текстовой области */
table.form-table textarea {
    min-height: 100px;
    resize: vertical;
}

/* Стили для чекбоксов и радиокнопок */
table.form-table input[type="checkbox"],
table.form-table input[type="radio"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Стили для кнопок */
table.form-table input[type="submit"],
table.form-table input[type="button"],
table.form-table button {
    padding: 10px 16px;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

table.form-table input[type="submit"]:hover,
table.form-table input[type="button"]:hover,
table.form-table button:hover {
    background-color: #2563eb;
}

/* Стили для неактивных полей */
table.form-table input:disabled,
table.form-table select:disabled,
table.form-table textarea:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Стили для обязательных полей */
table.form-table .required-field {
    border-left: 3px solid #ef4444;
    padding-left: 10px;
}

/* Подсказки под полями */
table.form-table .field-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    display: block;
}

/* Ошибки валидации */
table.form-table .field-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    display: block;
}

table.form-table .error-field {
    border-color: #ef4444;
    background-color: #fef2f2;
}
/* End */
/* /bitrix/templates/main/components/bitrix/form/template1/bitrix/form.result.new/.default/style.css?17548834055836 */
