.mmp-container {
    background-color: #ecfaff;
}

.result-search {
    max-width: 1170px;
    display: flex;
    gap: 40px;
    font-family: Arial, sans-serif;
    margin: auto;
}

.result-search__form,
.result-search__result {
    padding: 20px;
    box-sizing: border-box;
}

.result-search__form {
    background-color: #F4F4F4;
    width: 33.33%;
}

.result-search__result {
    width: 66.66%;
    color: black;
}

.result-search__title {
    color: #00adee;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.result-search__label {
    display: block;
    font-weight: bold;
}

.result-search__select,
.result-search__input {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 16px;
    padding: 6px 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.result-search__radio-group {
    margin-top: 10px;
    margin-bottom: 16px;
}

.result-search__radio {
    margin-right: 8px;
}

.result-search__button {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0;
    background-color: #faa723;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.result-search__button:hover {
    background-color: #e59317;
}

.result-search__result-detail .value {
    font-weight: 700;
    color: black;
}

.result-search__result-detail {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.result-search__result-detail .highlight {
    color: #d80000;
    font-weight: 900;
}

.mmp-subhead {
    background-color: #00adee;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: white;
    font-size: 18px;

}

.custom-prev::before, .custom-next::before {
    color: #888;
    font-size: 40px;
}

/* Bullet khi active */
.slick-dots li.slick-active button {
    background-color: #00adee; /* màu khi active */
}

.slick-dots li button::before {
    display: none;
}

/* Tạo bullet hình tròn lớn hơn */
.slick-dots li button {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #888;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .custom-prev::before, .custom-next::before {
        display: none;
    }
    .result-search {
        flex-direction: column;
    }
    .result-search__form {
        width: 100%;
    }
    .result-search__result {
        margin: 0;
        width: 100%;
    }
    .result-search__result-detail {
        margin: 0;
        width: fit-content;
    }
}

.flatpickr-current-month {
    display: flex;
}