/* Navbar styling */
.navbar-book {
    margin-top: 50px !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa; /* Light background */
    border-radius: 30px !important;
    padding: 10px 20px !important;
}
/********For small screens **********/
@media screen and (max-width:768px) {
  .navbar-book{
        margin-top: 0px !important;
        border-radius: 0px !important;
        padding: 10px !important;
    }   
}


@media screen and (min-width: 768px) {
  .navbar-book {
        width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.navbar-book .nav-item {
    position: relative;
    margin: 0 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    color: #495057; /* Neutral text color */
}

.navbar-book .nav-item:hover {
    background-color: #e9ecef !important;
    border-radius: 20px;
    padding: 3px;
    color: #007bff !important; /* Blue hover */
    transition: all 0.3s ease-in-out;
}

/* Dropdown-like div styling */
.dropdown-like {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 10px;
    z-index: 1000;
    display: none;
    width: 320px;
    font-size: 14px;
}

.dropdown-like input {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    width: 100%;
}

.dropdown-like input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.dropdown-like1 input {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  width: 100%;
}

.dropdown-like1 input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Counter styling */
.counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.counter-group:last-child {
    border-bottom: none;
}

.counter-group span {
    font-size: 16px;
    color: #495057;
}

.counter-group button {
    width: 36px;
    height: 36px;
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.counter-group button:hover {
    background-color: #007bff;
    color: white;
}

/* Button styling */
#searchButton {
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 90px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#filter{
    background-color: #495057;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 90px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 5px;
}
/**************************************************************************************
***************************************************************************************
CUSTOM MODAL STYLING
**************************************************************************************
*************************************************************************************/
.modal-body-filter{
    height: 50vh !important;
    overflow-y: auto;
   } 
  .modal-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    z-index: 1001;
    position: relative;
  }
  
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .modal-header h2 {
    margin: 0;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  .selected-filters,
  .filter-section {
    margin-top: 20px;
  }
  
  #filterTags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .filter-tag {
    background: #f0f0f0;
    border-radius: 16px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .remove-btn {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 12px;
  }
  
  .add-filter-btn {
    background: #e0e0e0;
    border: none;
    border-radius: 16px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
  }
  
  .filter-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  
  .filter-option {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
  }
  
  .filter-option.active {
    background: black;
    color: white;
  }
  
  .modal-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .clear-filters-btn {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 16px;
  }
  
  .show-results-btn {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
  }

/**************************************************************************************
***************************************************************************************
CUSTOM PROGRESS BAR STYLING
**************************************************************************************
*************************************************************************************/

.slider-container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
  }
  .range-slider {
    position: relative;
    width: 100%;
  }
  .range-bar {
    height: 5px;
    background-color: #ddd;
    position: relative;
    margin: 20px 0;
    border-radius: 3px;
  }
  .range-highlight {
    height: 5px;
    background-color: #ff0066;
    position: absolute;
    top: 0;
    border-radius: 3px;
  }
  .range-thumb {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #ff0066;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    top: 50%;
  }
  .value-input {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 20px;
  }
  .value-input input {
    width: 150px;
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1rem;
  }

/**************************************************************************************
***************************************************************************************
CUSTOM COUNTER FOR CHAMBERS STYLING
**************************************************************************************
*************************************************************************************/


  .counter-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .counter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .counter-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }
  .counter-btn:hover {
    background-color: #f1f1f1;
  }
  .counter-value {
    min-width: 30px;
    text-align: center;
    font-size: 1rem;
  }
  .counter-label {
    font-size: 1rem;
    font-weight: bold;
  }
  .divider {
    margin-top: 15px;
    border-top: 1px solid #ccc;
  }

/**************************************************************************************
***************************************************************************************
CUSTOM EQUIPEMENT SELECTION STYLING
**************************************************************************************
*************************************************************************************/

  .equipment-container {
    padding: 20px;
    font-family: Arial, sans-serif;
    
  }

  .equipment-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .equipment-group-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .equipment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.3s ease;
  }

  .equipment-item.active {
    border-color: #007bff;
    background-color: #f0f8ff;
  }

  .equipment-item img {
    height: 20px;
    margin-right: 5px;
  }
  /**************************************************************************************
***************************************************************************************
LANGUAGE BUTTON STYLING
**************************************************************************************
*************************************************************************************/
#btn-language{
    width:100% !important;
    padding: 15px;
    text-align: left;
    border: none;
    background-color: transparent !important;
}
#arrow{
    float: right;
}
.language{   
    padding: 10px;
    color: black;
    width: 100% !important;
    text-decoration: none;
}


#horizontal-line{
    border: 1px solid #ccc;
    width: 100%;
}