.custom-header {
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: 0.3s ease;
}

header.scrolled {
    background-color: #222;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.owl-carousel .item {
    background: #eee;
    padding: 20px;
    text-align: center;
}

#datepicker {
    margin: 20px auto;
    display: block;
    padding: 10px;
    width: 200px;
}

.accordion-item {
    border: 1px solid #ccc;
    margin: 10px 0;
}

.accordion-header {
    background: #f1f1f1;
    padding: 10px;
    cursor: pointer;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 10px;
}

.accordion-item.active .accordion-content {
    padding: 10px;
}

#scrollTopBtn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    padding: 10px 15px;
    font-size: 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#scrollTopBtn.show {
    display: block;
}
