/*
This file contains styles specifically tailored for the public-facing section of the application. These styles override
the general ones defined in styles.css.
*/

.form-check-input:disabled {
    background-color: #a6a7a8;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-select:disabled {
    --cui-form-select-bg-img: none;
}

.logo-max-size {
    max-width: 150px;
    max-height: 150px;
}

.logo-max-size-small {
    max-width: 75px;
    max-height: 75px;
}

.canceled-event td {
    background-color: #f8edee !important;
    color: #721c24 !important;
}

.canceled-participant td {
    background-color: #f8edee !important;
    color: #721c24 !important;
}

/* Step icon circle */
.step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Container spacing for vertical step list */
.step-vertical-item {
  min-height: 75px;
}

/* Vertical line that connects steps */
.step-line-vertical {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
    background-color: #dee2e6;
    z-index: 0;
}

.step-horizontal-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-horizontal-item {
    position: relative;
    flex: 1;
}

.step-line-horizontal {
    position: absolute;
    top: 16px;
    left: 65%;
    right: -45%;
    height: 2px;
    background-color: #dee2e6;
    z-index: 0;
}
.icon-reservation-sidebar {
    position: absolute;
    left: 15px;
    top: 15px;
    color: gray;
    cursor: pointer;
}

.description-limit {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 5;
    box-orient: vertical;
    text-overflow: ellipsis;
    white-space: pre-line;
    word-break: break-word;
}

.review-accom-box-header {
     border-top: 2px solid #333;
}