  table {
    width: 100%;
    border-collapse: collapse; /* Merge borders to look cleaner */
    margin-bottom: 20px; /* Add space below the table */
  }


  .qtytable {
    background-color: #2e3192; /* Light grey background for headers */
    color: white;
	border: 1px solid #ddd;
    padding:10px;
    text-align: center;
  }

  td {
    background-color: #fff; /* White background for table rows */
	border: 1px solid #ddd;
    padding: 0px 5px 0px 5px;
    text-align: center;
  }

  tr:nth-child(even) {
    background-color: #f9f9f9; /* Alternate row background for readability */
  }

  tr:hover {
    background-color: #f1f1f1; /* Add hover effect for interactivity */
  }

  select {
    padding: 5px; /* Slight padding for the select dropdown */
    border: 1px solid #ccc; /* Light border for dropdown */
    border-radius: 4px; /* Rounded corners */
    background-color: #fff; /* White background for dropdown */
	
  }
  .custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.selected {
    padding: 8px;    
    cursor: pointer;
}
.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    display: none;
    background: white;
    z-index: 1;
}
.custom-dropdown.open .options {
    display: block;
}
.option {
    padding: 8px;
    cursor: pointer;
}
.option:hover {
    background-color: #f0f0f0; /* Hover effect for options */
}
.option.selected { /* Style for selected option */
    background-color: #d3d3d3; /* Grey color for selected option */
    color: #aaa; /* Optional: Change text color */
    cursor: not-allowed; /* Change cursor to indicate unclickable */
}
.option.selected:hover { /* Keep greyed out when hovered */
    background-color: #d3d3d3; /* Ensure it stays grey */
	
}
  .sticky-container {
            position: fixed;
            top: 60%;
            right: 20px;
            transform: translateY(-50%);
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 15px 15px 0px 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            text-align: center;
        }
		.custom-dropdown .options {
    display: none;
}
.thumbnail {
    width: 100%; 
    height: auto;
    max-width: 100px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal1 {
    display: none; 
    position: fixed; 
    z-index: 1060; /* Higher than the Bootstrap modal and backdrop */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.9); 
    justify-content: center;
    align-items: center;
}

.modal1-content {
    display: block;
    margin: auto;
    max-width: 90%; 
    max-height: 90%;
    z-index: 1061; /* Ensure image is above the modal */
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1061; /* Ensure close button is above modal */
}

.close:hover {
    color: #bbb;
}

/* Override Bootstrap's backdrop z-index */
.modal-backdrop.show {
    z-index: 1050; /* Keep it below the image modal (which is 1060) */
}
.no-rooms-box {
            border: 2px solid #f2f2f2;
            padding: 20px;
            background-color: #f9f9f9;
            color: #333;
            text-align: center;
            font-family: Arial, sans-serif;
            width: 600px;
            margin: 50px auto;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .no-rooms-box i {
            color: #ff6b6b; /* Sad icon color */
            margin-left: 10px;
        }