.guest-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guest-block span {
    display: block;
    font-weight: 500;
    color: #624e5e;
    font-family: 'MainFont', serif;
}

.guest-input {
    font-family: 'MainFont', serif;
    text-align: center;
    padding: 8px 16px;
    cursor: pointer;
    outline: none;
    caret-color: transparent;
    width: 200px;
}





.guest-selector {
    display: none;
    position: absolute;
    top: calc(80% + 7px);
    width: 250px;
    font-family: 'MainFont', serif;
    background: white;
    border-radius: 4px;
    padding: 20px;
    z-index: 1000;
    border: 1px solid #e2e8f0;
}

.guest-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.guest-category:last-child {
    border-bottom: none;
}

.category-info {
    flex: 1;
}

.category-title {
    font-weight: normal;
    color: #2d3748;
    margin-bottom: 3px;
}

.category-subtitle {
    font-size: 13px;
    color: #718096;
}

.counter {
    display: flex;
    align-items: center;
}

.counter-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--buttons-color);
    background: white;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: var(--buttons-color);
    color: white;
    border-color: var(--buttons-color);
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-btn:disabled:hover {
    background: white;
    color: inherit;
    border-color: #cbd5e0;
}

.counter-value {
    width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.guest-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.apply-btn {
    padding: 10px 20px;
    background: var(--buttons-color);
    color: white;
    border: none;
    font-weight: normal;
    font-family: 'MainFont', serif;
    cursor: pointer;
    transition: background 0.2s ease;
}

.apply-btn:hover {
    background: #a28b91;
}

.visible {
    display: block;
}
@media screen and (max-width: 1000px) {
    .guest-selector{
        top: calc(70% + 7px);
        width: 70%;
        padding: 20px;

    }
    .category-title{
        font-size: 22px;
    }
    .category-subtitle{
        font-size: 14px;
    }
    .counter-btn{
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    .counter-value{
        font-size: 22px;
        width: 40px;
    }
    .apply-btn{
        padding:10px 20px;
        font-size: 18px;
    }
    .daterangepicker .calendar-table th, .daterangepicker .calendar-table td{
        text-align: center;
        vertical-align: middle;
        min-width: 40px;
        width: 40px;
        height: 40px;
        line-height: 20px;
        font-size: 14px;
        border-radius: 4px;
        border: 1px solid transparent;
        white-space: nowrap;
        cursor: pointer;
        font-family: 'MainFont', serif;
        font-weight: normal;
    }
    .daterangepicker{
        width: fit-content;
    }
    .date-price{
        font-size: 8px;
    }
}

