﻿.house-system-container {
    position: absolute;
    width: 200px;
    height: auto;
    left: 100px;
    top: 100px;
}

.house-system-title {
    position: absolute;
    width: 200px;
    height: 80px;
    font-size: 14px;
    text-align: center;
    background: #EFECE6;
    border: 1px solid #A38C7C;
    border-radius: 20px;
    font-family: 'Ysabeau Infant Medium';
    font-weight: 500;
    color: #3F2E21;
    padding-top: 10px;
    cursor: grab; /* ✅ Можно двигать */
    z-index: 5 !important;
    top: 10px;
    display: flex;
    align-items: flex-start; /* 🔹 Выравниваем текст и иконку */
    justify-content: start;
}

.house-system-icon {
    width: 11px; /* 🔹 Размер иконки */
    height: 11px;
    margin-right: 10px; /* 🔹 Отступ между иконкой и текстом */
    margin-left: 14px;
    margin-top: 6px;
}

.house-system-close-button {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    font-size: 18px;
    color: #A38C7C;
    cursor: pointer;
}

.house-system-data-wrapper {
    position: relative;
    width: 200px;
    height: 180px;
    background: #FFFFFF;
    border: 1px solid #A38C7C;
    border-radius: 20px;
    margin-top: 50px; /* ✅ Отступ, чтобы заголовок был отдельно */
    z-index: 100000 !important;
    overflow-y: auto;
    padding-right: 0px !important;
    padding-top: 5px !important;
}

.house-system-table {
    width: 90%;
    margin: 1px auto;
    border-collapse: collapse;
}

    .house-system-table input[type="radio"] {
        margin-right: 8px;
    }

    .house-system-table label {
        cursor: pointer;
        user-select: none;
    }

    .house-system-table tr:hover {
        background-color: #f5f5f5;
    }

.house-system-label {
    margin-left: 8px;
    font-size: 14px;
    font-family: 'Ysabeau Infant Medium';
}