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

.two-comlumn-controller{
    display: flex;
    gap: 30px;
}
.stars-rating span{
    color: gold;
}
.two-comlumn-controller .left-side{
    width: 870px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.left-side .card{
    align-items: center;
    display: flex;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
.left-side .card .card-img {
    width: 310px;
    height: 210px;
}
.left-side .card .card-body {
    width: 390px;
    padding: 10px 0;
}
.left-side .card .card-body .description{
    padding: 0px 17px;
    border-right: 2px solid rgb(208, 208, 208);
}
.description p{
    color: rgba(128, 128, 128, 0.909);
    font-size: 15px;
    padding: 5px 0;
}
.left-side .card .card-body .description .date{
    margin-top: 7px;
    color: #00b4d8;
    font-weight: bold;
    padding: 5px 15px;
    width: 120px;
    background-color: #e9eced8f;
}
.left-side .card .card-footer {
    width: 200px;
    text-align: center;
    
}
.left-side .card .card-img img{
    width: 100%;
    height: 100%;
}

.left-side .card .card-footer .booking-btn{
    background-color: #00b4d8;
    color: white;
    padding: 5px 20px;
    text-decoration: none;
    border-radius: 18px;
    
}

.left-side .card .card-footer .text{
    padding: 10px 0 15px 0 ;
}

.two-comlumn-controller .right-side{
    width: 330px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.two-comlumn-controller table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    background-color: #00b4d8;
}

.two-comlumn-controller table td {
    padding: 15px;
}
.two-comlumn-controller input,select {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Content", system-ui;
    border: 1px solid white;
}
.two-comlumn-controller input,select:focus{
    border-color: #00b4d8;
    outline: 0;
}

.two-comlumn-controller button {
    padding: 10px 20px;
    width: 100%;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    background-color: #0075e2;
}

button:hover {
   opacity: 0.9;
}

.suggestion{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.suggestion .card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .image-container {
    position: relative;
  }
  
  .image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .absolute {
    position: absolute;
    top: 5px;
    left: 10px;
   
  }
  
  .star {
    margin-right: 5px;
  }
  
  .card-content {
    padding: 5px 15px;
  }
  
  
  p {
    color: #555;
  }
