body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    background-color: #e5e5e5;
}

.top-margin-homepage {
    margin-top: 170px;
}

.top-margin-reservation {
    margin-top: 130px;
}

.selected-date {
    background-color: #0080ff66;
}

.reservation-box-container {
    width: 85%;
    padding: 30px;
    background-color: white;
    margin: auto;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.insert-date-add-truck {
    font-size: 25px;
    padding: 10px;
    width: 50%;
    text-align: center;
}

.miniature-img {
    border-radius: 50%;
    width: 100px;
}

.time-slot-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
}

.pick-date-container {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
}

.duration-container {
    margin-top: 0px;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

a {
    color: black !important;
    text-decoration: none !important;
}

.h2-margin-top-bottom {
    font-weight: bold !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}

.highlight-cell {
  background-color: rgba(0, 128, 255, 0.2); /* Change this color as needed */
}

.hidden-element-first, .hidden-element-second, .hidden-element-third, .hidden-element-fourth {
    display: none !important;
}

.input-container-reservation {
    margin: 5px;
}

.input-container-reservation label {
    width: 250px;
    font-size: 24px;
    font-weight: bold;
}

.input-container-reservation input {
    font-size: 25px;
    padding: 5px;
}

.finish-reservation-button {
    margin: 20px;
    padding: 20px 120px;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.hr-basic-style {
    width: 95%;
    border: 1px solid grey;
    margin: 20px;
}

.column-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 150px;
    cursor: pointer;
}

#spolupraca {
    width: 80%;
    margin: auto;
}

.contact-container {
    display: flex;
    align-items: center; /* Vertically center the child elements */
    justify-content: center; /* Horizontally center the child elements */
    font-size: 18px;
    background-color: white;
    width: 100%;
    height: 240px;
    margin: 0;
}

.contact-info {
    text-align: center;
    max-width: 90%;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background: white;
  font-weight: bold;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.navbar-content {
  margin: auto;  
  max-width: 200px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}

.navbar-user-info {
    position: absolute;
    top: 35px;
    right: 130px;
    font-size: 19px;
    background-color: transparent;
    border: none;
    margin-bottom: 0;
    padding: 0px;
}

.avatar-user-icon {
    font-size: 20px;
    border: none;
    background-color: #e5e5e5;
    padding: 14px;
    border-radius: 50%;
    margin-bottom: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform-origin: center;
}

.avatar-user-icon:hover {
    transform: scale(1.15);
}

#dropdown-menu {
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: right;
    align-items: right;
    top: 85px;
    right: 3px;
    width: 200px;
    font-size: 18px;
    transition: 0.3s;
    text-align: right;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.toggle-password {
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
    margin-top: 15px;
}

.navbar-button {
  text-decoration: none;
  color: black;
  margin: 12px;
  font-size: 18px;
  transition: transform 0.3s ease;
  display: flex;
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform-origin: center;
  backface-visibility: hidden; /* Helps with rendering artifacts */
  perspective: 1000px;          /* Improves hardware acceleration */
}

.navbar-button:hover {
  transform: scale(1.3);
}

.pre-firmy {
    width: 145px;
}

/* Style the social icons and phone info on the right side */
.nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.technique-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* centers the last row */
  gap: 16px;
  width: 60%;
  margin: 20px auto 0;
}

.technique-btn {
    flex: 1 1 calc(33.333% - 16px); /* 3 per row, with gap accounted for */
    min-width: 180px; 
    padding: 16px;
    font-size: 22px;
    border: 2px solid black;
    border-radius: 4px;
    transition: 0.3s;
    background-color: #e5e5e5;
    text-decoration: none;
    color: black;
    cursor: pointer;
    text-align: center;
    margin: 20px;
}

.technique-btn:hover {
    background-color: #c9c9c9;
}

.dropdown {
    display: none;
    flex-direction: column;
    justify-content: right;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 5px;
    z-index: 999;
}

.nav-button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    border: none !important;
    background-color: transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform; /* helps GPU rendering = smoother */
}

.nav-button:hover {
    transform: scale(1.2); /* makes it bigger smoothly */
}

#technique {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#technique, #gallery, #poukazka, #recenzie, #spolupraca {
    margin-top: 100px;
}

.swal-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.swal-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.h1-slogan,
#spolupraca h1,
#gallery h1,
#technique h1,
.recenzie-h1,
#poukazka h1{
    font-family: 'Luminari', fantasy;
    text-align: center;
    font-size: 35px;
}

#recenzie {
    width: 90%; 
    margin: 80px auto;
    max-width: 900px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.my-swal {
    width: 50% !important;
}

.review-card {
    width: 70%;
    margin: auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-header h3 {
    margin: 0;
    color: #333;
    font-size: 22px; 
    font-weight: 600;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.stars .fa-star {
    margin-left: 2px;
}

.stars .filled {
    color: #FFD700;
}

.review-message {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: wrap;
    max-width: 100%;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    text-align: right;
    margin-bottom: 0px;
}

.review-delete {
    font-size: 15px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 5px;
    cursor: pointer; 
    color: #e74c3c; 
    margin-top: 5px; 
    text-align: right;
    margin-bottom: 0px;
}

.review-button {
    padding: 0.5rem 1rem;
    background-color: #0080ff66;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.review-button:hover {
    background-color: #0080ff66;
    transform: translateY(-2px);
}

.review-button:active {
    background-color: #0080ff66;
    transform: translateY(0);
}

.h1-slogan {
    font-size: 28px;
    font-family: 'Luminari', fantasy;
}

.reservation-button-about-us {
    padding: 15px 250px !important;
    border: 2px solid black;
    border-radius: 3px;
    transition: 0.3s;
    background-color: #e5e5e5;
    text-decoration: none;
    color: black;
    cursor: pointer;
    font-size: 30px;
    width: 40%;
    text-align: center;
}

.reservation-button-about-us:hover {
    background-color: #c9c9c9;
}

.summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.summary p {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.visible {
    opacity: 1;
    transition-delay: 0.5s;
}

.about-us-container {
    display: flex;
    margin: auto;
    width: 85%;
}

#spolupraca h3 {
    font-weight: normal;
}

#spolupraca h1{
    margin-bottom: 40px;
}

#spolupraca {
    margin-top: 100px;
    text-align: center;
    margin-bottom: 150px;
}

.voucher-download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33% - 20px);
}

.voucher-download-container img {
    height: 400px;
    width: 97%;
    margin: 15px;
    box-sizing: border-box;
    border-radius: 3%;
    cursor: zoom-in;
}

.modal {
    position: relative;
    display: none;
    position: fixed;
    z-index: 9000;
    top: 0;
    right: 0;
    padding-top: 50px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: 80%;
    max-height: 80%;
}

.download-button {
    text-decoration: none;
    color: black;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.download-button i{
    font-size: 25px;
    margin-left: 10px;
}

.download-button:hover {
    text-decoration: underline;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.container-settings-tables {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.table-container-settings {
    width: 47%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table-container-profile {
    width: 95%;
    max-width: 95%;
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.table-container-settings h2, .table-container-profile h2 {
    width: 95%;
    font-size: 24px;
    margin-bottom: 20px;
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}

.table-settings {
    width: 100%;
    border-collapse: collapse;
}

.table-profile {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.table-profile th, .table-profile td {
    padding: 5px;
    margin: 5px;
}

.table-settings td, .table-settings th {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.table-settings th {
    background-color: #f2f2f2;
    color: #333;
    font-weight: bold;
}

.table-settings input[type="number"],
.table-settings input[type="text"],
.table-settings input[type="time"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.table-settings .btn,
.table-settings .deactivate-btn,
.table-profile .deactivate-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.table-settings .btn:hover,
.table-settings .deactivate-btn:hover,
.table-profile .deactivate-btn:hover {
    background-color: #003d80;
}

.table-settings .deactivate-btn,
.table-profile .deactivate-btn {
    background-color: #dc3545;
}

.table-settings .deactivate-btn:hover,
.table-profile .deactivate-btn:hover {
    background-color: #c82333;
}

.fa-duotone.fa-circle-check {
    color: #28a745;
}

.fa-duotone.fa-circle-xmark {
    color: #dc3545;
}

.day-button {
    margin: 2px;
    font-size: 15px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.day-button.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.option-button-person, .option-button-time, .time-slot-select, .user-select {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effect */
.option-button-person:hover, .option-button-time:hover, .finish-reservation-button:hover, .time-slot-select:hover, .user-select:hover {
    background-color: #e0e0e0; /* Slightly darker background on hover */
    border-color: #ccc; /* Change border color on hover */
    transform: scale(1.05); /* Slight scale up on hover */
}

/* Style for selected buttons */
.option-button-person.selected, .option-button-time.selected {
    background-color: #007BFF; /* Change background color when selected */
    color: white; /* Change text color when selected */
    border-color: #0056b3; /* Change border color when selected */
    transform: scale(1.1); /* Slightly larger scale for selected buttons */
}

.saved-person-container {
    margin: 10px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.saved-person-text {
    width: 200px;
    padding: 5px 15px;
    border: 2px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.3s;
}

.saved-person-delete-button {
    cursor:pointer;
    margin-left: 10px;
    background-color: white;
    border: none;
    transition: 0.3s;
}

.saved-person-text:hover {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.saved-person-delete-button:hover {
    scale: 1.2;
}

.big-button {
    padding: 20px;
    margin: 10px 0;
    font-size: 24px;
    border: 2px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

.big-button.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.option-button.selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.all-reservations-h2 {
    text-align: center;
}

.date-input-all-reservations {
    font-size: 10px;
    width: 100px;
    padding: 10px;
}

.emp-table {
    width: 98%;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin-top: 70px;
    padding: 50px;
}

.emp-table th, td {
    padding: 2px;
}

.text-align-left {
    text-align: left;
}

.text-align-center {
    text-align: center;
}

.table-top-tr-no-background {
    color: black;
    background-color: white;
}

.table-second-tr-with-background {
    background-color: #244b90;
    color: white;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 40px;
}

.add-employee-th-table-button {
    color: white;
    cursor: pointer;
    background-color: #309d30;
    padding: 5px;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
}

.add-employee-th-table-button:hover {
    background-color: #247324;
    color: white;
    text-decoration: none;
}

.emp-table tbody td {
    padding: 8px;
    border: 1px solid #ddd;
    vertical-align: middle;
}

.action-button {
    color: white;
    border: none;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.action-button:hover {
    opacity: 0.8;
}

.emp-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.emp-table tbody tr:hover {
    background-color: #ddd;
}

.all-reservations-action-buttons-container {
    position: absolute; /* Ensures it's positioned relative to its closest positioned ancestor */
    width: 93%; /* Width of the paginator */
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: left; /* Centers the content horizontally */
    margin: 0 auto;
    top: 180px; /* Aligns it relative to the top of the page */
    left: 50%; /* Moves it to the center of the page */
    transform: translateX(-50%); /* Offsets it back by 50% of its width to ensure true centering */
    font-family: Arial, sans-serif;
    margin-top: 40px; /* Space from the top of the page */
    margin-bottom: 20px; /* Space from the bottom of the paginator (not effective when using margin-top and transform) */
}

.action-button-all-reservations {
    font-size: 20px;
}

.employee-count {
    margin-left: auto; /* Pushes the employee count span to the right */
    font-weight: normal;
}

.add-employee-button {
  width: 250px;
  padding: 10px 50px;
  border: 2px solid black;
  border-radius: 5px;
  background-color: white;
  color: black;
  cursor: pointer;
  transition: 0.3s;
  font-size: 25px;
  margin: 10px;
  margin-top: 30px;
}

.add-employee-button:hover,
.settings-save-button:hover {
  background-color: #e5e5e5;
}

.add-employee-link {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.add-employee-link:hover {
    color: #244b90;
    text-decoration: underline;
}

.ordering-link {
    color: black;
    font-size: 20px;
    margin-left: 4px;
}

.ordering-link:hover {
    color: black;
    text-decoration: underline;
}

.container {
  max-width: 800px;
}

.card-header {
    background-color: #244b90;
    color: white;
}

.styled-checkbox {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem; /* Adjust padding to match btn-outline-info */
    border-radius: 0.25rem; /* Match the button's border-radius */
    cursor: pointer;
}

.styled-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-left: 0.25rem; /* Adjust margin to move the checkbox to the right */
    cursor: pointer;
}

.styled-checkbox label {
    cursor: pointer;
}

.styled-checkbox:hover {
    background-color: #244b90;
    color: white;
}

.ccsi-image-navbar {
    width: 50px;
}

.swal-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swal-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swal-group label {
    width: 100px;
    margin-bottom: 0px;
}

.swal2-input {
    flex: 1;
    margin-bottom: 18px;
}

.nav-link {
    cursor: pointer;
}

.swal2-popup {
    width: auto;
    max-width: 95%;
    z-index: 2000;
}

.hidden-initially {
    visibility: hidden;
}

@media screen and (max-width: 2000px) {
    .navbar-user-info {
        position: absolute;
        top: 70px;
        right: 130px;
        font-size: 15px;
        background-color: transparent;
        border: none;
        margin-bottom: 0;
        padding: 0px;
    }

    .avatar-user-icon {
        font-size: 18px;
        border: none;
        background-color: #e5e5e5;
        padding: 9px;
        border-radius: 50%;
        margin-bottom: 0;
        margin-left: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

    #dropdown-menu {
        position: absolute;
        top: 50px;
        right: 3px;
        width: 200px;
        font-size: 18px;
        transition: 0.3s;
        text-align: right;
    }
}

@media screen and (max-width: 500px) {

    .person-container {
        width: 100%;
    }

    .evka-image {
        width: 50%;
    }

    .roman-image {
        width: 50%;
    }

    .h1-slogan,
    #spolupraca h1,
    #gallery h1,
    #technique h1,
    .recenzie-h1,
    #poukazka h1{
        font-size: 20px;
    }

    .my-swal {
        width: 90% !important;
    }

    .review-button {
        font-size: 12px;
        padding: 2px 4px;
    }

    .review-message {
        font-size: 14px;
    }

    .review-header h3 {
        font-size: 17px; 
    }

    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      height: 120px;
      background: white;
      font-weight: bold;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      flex-wrap: wrap;
      flex-direction: column;
    }

    .pre-firmy {
        width: 100px;
        margin-left: 80px;
    }

    #spolupraca h3 {
        font-weight: normal;
        font-size: 13px;
    }

    .navbar-button {
      text-decoration: none;
      color: black;
      margin: 2px;
      font-size: 10px;
      transition: 0.3s;
    }

    .logo-image {
        width: 110px;
        margin-right: 10px;
    }

    .summary h2{
        font-size: 18px;
    }

    .contact-container {
        display: flex;
        align-items: center; /* Vertically center the child elements */
        justify-content: center; /* Horizontally center the child elements */
        font-size: 12px;
        background-color: white;
        width: 100%;
        height: 120px;
        margin: 0;
        padding: 0;
    }

    .contact-container p{
        margin: 0px;
        padding: 2px;
    }

    .reservation-button-about-us {
        padding: 10px 60px !important;
        font-size: 20px;
        width: 60%;
        text-align: center;
        margin: 20px;
    }

    .about-us-container {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 90%;
    }

    .technique-buttons {
        display: grid;
        vertical-align: center;
        text-align: center;
        width: 90%;
        margin: auto;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 20px;
    }

    .technique-btn {
        width: 100%;
        height: 70px;
        font-size: 14px;
        margin: 0px;
        padding: 0px;
    }

    .voucher-download-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: calc(70% - 5px);
    }

    .voucher-download-container img {
        height: 130px;
        width: 92%;
        margin: 15px;
        box-sizing: border-box;
        border-radius: 10%;
        cursor: zoom-in;
    }

    .download-button {
        text-decoration: none;
        color: black;
        font-size: 12px;
        font-weight: bold;
        transition: 0.3s;
    }

    .download-button i{
        font-size: 17px;
        margin-left: 10px;
    }

    .navbar-user-info {
        position: absolute;
        top: 90px;
        right: 10px;
        font-size: 9px;
        background-color: transparent;
    }

    .avatar-user-icon {
        font-size: 10px;
        padding: 8px;
        margin-left: 2px;
        cursor: pointer;
        transition: 0.3s;
    }

    #dropdown-menu {
        position: absolute;
        top: 30px;
        right: 3px;
        width: 120px;
        font-size: 10px;
        transition: 0.3s;
        text-align: right;
    }

    .big-button {
        padding: 6px;
        margin: 5px 0;
        font-size: 18px;
        border: 2px solid #ccc;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
    }

    .time-slot-container {
        margin-top: 15px;
        width: 100%;
    }

    .input-container-reservation {
        margin: 5px;
    }

    .input-container-reservation label {
        width: 100px;
        font-size: 15px;
        font-weight: bold;
    }

    .input-container-reservation input {
        font-size: 13px;
        padding: 5px;
    }

    .finish-reservation-button {
        margin: 20px;
        padding: 20px 60px;
        font-size: 18px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .swal2-popup {
        width: auto;
        max-width: 95%;
        font-size: 12px;
    }

    .toggle-password {
        transition: 0.3s;
        margin-top: 0px;
    }

    .table-container-settings h2, .table-container-profile h2 {
        width: 100%;
        font-size: 20px;
        margin-bottom: 10px;
        color: #0056b3;
        border-bottom: 2px solid #0056b3;
    }

    .table-container-profile {
        width: 88%;
        max-width: 90%;
        margin: auto;
        background-color: #fff;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 5px;
    }

    .table-settings .btn,
    .table-settings .deactivate-btn,
    .table-profile .deactivate-btn {
        font-size: 10px;
    }

    .table-profile th, .table-profile td {
        padding: 10px;
        margin: 10px;
    }

    .container-settings-tables {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 10px;
        gap: 10px;
    }

    .table-container-settings {
        width: auto;
        font-size: 12px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .emp-table {
        width: 95%;
        margin: 0 auto;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        margin-top: 75px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 10px;
    }

    .emp-table th, td {
        padding: 2px;
    }

    .table-second-tr-with-background {
        background-color: #244b90;
        color: white;
        padding: 10px;
        text-align: center;
        vertical-align: middle;
        line-height: 40px;
    }

    .all-reservations-action-buttons-container {
        position: absolute; /* Ensures it's positioned relative to its closest positioned ancestor */
        width: 93%; /* Width of the paginator */
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: left; /* Centers the content horizontally */
        margin: 0 auto;
        top: 175px; /* Aligns it relative to the top of the page */
        left: 50%; /* Moves it to the center of the page */
        transform: translateX(-50%); /* Offsets it back by 50% of its width to ensure true centering */
        margin-top: 40px; /* Space from the top of the page */
        margin-left: 10px;
    }

    .date-input-all-reservations {
        font-size: 10px;
        width: 100px;
        padding: 2px;
    }

    .saved-person-container {
        margin: 5px;
        font-size: 15px;
    }

    .saved-person-text {
        width: 140px;
        padding: 5px 10px;
    }

    .action-button-all-reservations {
        font-size: 8px;
    }

    .ordering-link {
        color: black;
        font-size: 12px;
        margin-left: 3px;
    }

    .insert-date-add-truck {
        font-size: 15px;
        padding: 10px;
        width: 50%;
        text-align: center;
    }

    .reservation-box-container {
        width: 100%;
        padding: 10px;
        background-color: white;
        margin: auto;
        border-radius: 10px;
        margin-top: 20px;
        margin-bottom: 50px;
    }

    .btn {
        font-size: 10px;
    }

    .option-button-time {
        padding: 5px 10px;
        border: 2px solid #ddd;
        border-radius: 12px;
        background-color: #f0f0f0;
        transition: all 0.3s ease;
        font-size: 15px;
        cursor: pointer;
    }

    .all-reservations-h2 {
        text-align: left;
        margin-left: 40px;
    }

}

.person-card {
border-radius: 1rem;
transition: transform .25s ease, box-shadow .25s ease;
}
.person-card:hover {
transform: translateY(-6px);
box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.object-fit-cover {
object-fit: cover;
transition: transform .4s ease;
}
.person-card:hover .object-fit-cover {
transform: scale(1.03);
}

.service-item {
font-size: 1rem;
color: #444;
margin-bottom: .35rem;
display: flex;
align-items: center;
}

.h1-slogan {
color: #333;
font-style: italic;
}

.btn-primary {
font-weight: 600;
border-radius: 50px;
}

.object-fit-cover {
object-fit: cover;
transition: transform 0.3s ease;
}
.ratio:hover img {
transform: scale(1.05);
}

#sharedGalleryModal .modal-content {
background: rgba(0, 0, 0, 0.95);
}

.gallery-image {
max-width: 100vw;
max-height: 90vh;
object-fit: contain;
margin: auto;
display: block;
}

body.modal-open {
overflow: hidden;
}

.carousel-item {
height: 100vh;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
width: 3rem;
height: 3rem;
}

.bg-gradient {
background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

  .custom-wide {
    max-width: 60vw;       /* 70% of viewport width */
  }

  /* Optional: center it neatly */
  .custom-wide {
    margin-left: auto;
    margin-right: auto;
  }

  /* On small screens, keep Bootstrap defaults */
  @media (max-width: 992px) {
    .custom-wide {
      max-width: 100%;
    }
  }