@import url('https://fonts.googleapis.com/css2?family=Siemreap&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Siemreap", system-ui;
}

.container {
    width: 1200px;
    margin: auto;
}

.notification-content {
    width: 100%;
    height: 80px;
    /* background-color: #ddd; */
    display: flex;
    align-items: center;
}

.notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.notification .icon p {
    font-size: 20px;
    color: #ff8d15;
    font-weight: bold;
}

.search-now {
    border: 2px solid #ff8d15;
    width: 500px;
    display: flex;
    border-radius: 10px;
    background-color: white;
}

.search-now .form-control-3 {
    border: none;
    outline: none;
    width: 90%;
    padding: 10px;
    background-color: none;
    border-radius: 10px 0 0 10px;
}

.search-now input {
    font-size: 16px;
    font-family: "Siemreap", system-ui;
    font-weight: bold;
}

.search-now button {
    font-size: 18px;
    color: #ff8d15;
    width: 8%;
    padding: 10px;
    border: none;
    background-color: white;
    font-weight: bold;
}

.search-now button i {
    font-weight: bold;
}

/* side bar */
.side-bar {
    width: 100%;
}

.side-bar-left {
    height: 100vh;
    text-align: center;
    background-color: #ff8d15;
}

.side-bar-left button {
    margin-bottom: 5px;
    font-weight: bold;
    width: 100%;
}

.side-bar-left .btn-message a {
    text-decoration: none;
    color: white;
    font-family: "Siemreap", system-ui;
    font-size: 16px;
}

.side-bar-left .btn-all {
    background-color: #333;
    color: white;
    padding: 17px 0;
    border: none;
}

.side-bar-left .btn-1 {
    background-color: #ff8d15;
    color: #333;
    padding: 10px 18px;
    border: none;
}

.side-bar-right {
    display: inline-block;
}

.side-bar-right .card-noti {
    width: 100%;
    padding: 7px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: flex !important;
    align-items: center;
    justify-content: space-evenly;
}

.card-noti .card-img-now {
    width: 200px;
    display: flex;
    align-items: center;
    border-radius: 10px;
}

.card-noti .card-img-now img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.side-bar-right .card-noti .card-content h2 {
    color: #ff8d15;
}

.side-bar-right .card-noti .card-content p {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.btn-now button {
    width: 200px;
}

.btn-now .btn-booking-now a {
    text-decoration: none;
    color: white;
}

.btn-now .btn-booking-now {
    background-color: #ff8d15;
    color: white;
    padding: 10px 18px;
    border: 0;
    font-size: 16px;
    border-radius: 10px;
    font-family: "Siemreap", system-ui;
}

.btn-now .btn-booking-now:hover {
    color: white;
    background-color: #333;
}