/* CSS */
.clear-search-button {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.search-input-mobile {
    padding-right: 30px;
    right: 100px;
    /* Tạo không gian cho nút X */
    position: relative;
}

.search-container {
    max-height: 300px;
    overflow: auto;
    width: 100%;
    padding: 10px 10px;
    background: #fff;
    margin-top: 56px;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #999;
}

.search-button-mobile {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 20px;
    background-color: #1c5639;
    border: none;
    border-radius: 0 25px 25px 0;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #1c5639;
}

/* Responsive */
@media (min-width: 1200px) {
    .search-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .p-m-0 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

.menu-container {
    max-width: 100%;
    overflow-x: hidden;
}

.menu-slide {
    display: flex;
    transition: transform 0.3s ease;
}

.menu-panel {
    min-width: 100%;
    padding-right: 20px;
    padding-top: 20px;
    box-sizing: border-box;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.menu-item a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}

.menu-item i {
    margin-right: 10px;
}

.back-button {
    cursor: pointer;
    margin-bottom: 20px;
}

#submenu-title {
    font-weight: bold;
    margin-bottom: 20px;
}
