/* Required indicator styles */
.required-indicator {
    color: darkred;
    margin-left: 5px;
}

/* For Profile Image */
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cust_profile_pic {
    border: 2px solid #5d5d5d;
    color: #808080;
    background-color: transparent;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.upload-btn-wrapper input[type="file"] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

/* Style the button when hovered */
.cust_profile_pic:hover {
    background-color: #000;
    color: #fff;
}

/* Style for image container */
.restaurant_image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    margin-bottom: 20px; /* Margin for spacing */
}

/* Style for image */
.image-restaurant_image img {
    width: 100%; /* Make image fill its container */
    height: auto; /* Maintain aspect ratio */
}

table {
    font-size: 0.7rem; /* Adjust the font size as needed */
}

.add-time-btn {
    font-size: 0.5rem;
}

.day-checkbox {
    padding-top: 10px;
}
.time-input {
    margin-bottom: 10px;
}

.readonly-input {
    background-color: #f2f2f2; /* Light grey background color */
    pointer-events: none; /* Disable pointer events */
    color: red; /* Black font color */
}

/* HERE */

.profile-image-rounded-image {
    width: 2rem;
    height: 2rem;
}

/* ================================Booking Management ============================================ */
.time-slot,
.table-slot,
.availBussinessHoursSlots-hour-slot-time {
    border: 2px solid #ced4da;
    border-radius: 0.3rem;
    margin: 0.5rem;
    padding: 0.8rem;
    cursor: pointer;
    font-size: 0.6rem;
    transition: border-color 0.3s;
}

.time-slot:hover,
.table-slot:hover,
.availBussinessHoursSlots-hour-slot-time:hover {
    border-color: #6c757d;
}

.time-slot.selected,
.table-slot.selected,
.availBussinessHoursSlots-hour-slot-time.selected {
    border-color: green;
    box-shadow: 0 0 0.6rem rgba(0, 128, 0, 0.5);
    transition: border-color 0.3s;
}

/* ==============TImer Start Here================= */

#timer {
    background-color: darkred;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.table-slot {
    width: 100px; /* Small width */
    height: 300px; /* Adjusted height to accommodate the name and the image */
    border: 2px solid #000;
    display: flex;
    flex-direction: column; /* Arrange content vertically */
    justify-content: center;
    align-items: center;
    overflow: hidden; /* To hide overflowing content */
}

/* Style for the table name */
.table-name {
    margin-bottom: 10px; /* Add some space between the name and the image */
}

/* Style for the table image */
.table-image {
    max-width: 20%; /* Ensure image fits within the container */
    max-height: 15%; /* Ensure image fits within the container */
}

.counter-controls {
    display: flex;
    align-items: center;
}
.counter-controls span {
    cursor: pointer;
}
.counter-input {
    width: 50px;
    text-align: center;
    border: none;
    border-radius: 0.25rem;
}

/* Time slots here */

.timeSlot {
    /* transition: box-shadow 0.3s ease; */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeSlot:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.removeButton {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.timeSlot.hide {
    opacity: 0;
    transform: translateY(-20px);
}

.availBussinessHoursSlots-day-container {
    margin-bottom: 20px;
}

.availBussinessHoursSlots-hour-slot-time {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 10px;
    margin-right: 10px;
    width: 100px; /* Adjust as needed */
}
