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

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

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

@media screen and (max-width: 768px) {
    .top-margin-homepage {
        margin-top: 65px;
    }
    
    .top-margin-reservation {
        margin-top: 85px;
    }
}

.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: 110px;
    height: 110px;
    object-fit: cover;
}

.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;
}

/* Business section styles moved to homepage-modern.css */

/* Contact container styles moved to homepage-modern.css */

/* ============================================
   MODERN NAVBAR STYLES
   ============================================ */

.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.modern-navbar .container-fluid {
  padding: 0 2rem;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 1.5rem;
}

/* Brand / Logo */
.navbar-brand-section {
  flex-shrink: 0;
}

.navbar-logo {
  height: 60px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Navigation Links - Left aligned */
.navbar-nav-center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-start;
}

.nav-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: #2c3e50;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  background: white;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link-item i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-link-item:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.35);
  border-color: transparent;
}

.nav-link-item:hover i {
  transform: scale(1.1);
}

/* Navbar Actions (Right Side) */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* CTA Reservation Button */
.btn-reservation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 128, 255, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-reservation:hover {
  background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 128, 255, 0.4);
}

.btn-reservation i {
  font-size: 1.1rem;
}

/* Social Icons */
.navbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white !important;
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
}

/* Language Toggle */
.navbar-language {
  position: relative;
}

.language-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.language-toggle:hover {
  background: white;
  border-color: #0080ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.2);
}

.language-toggle img {
  border-radius: 4px;
  object-fit: cover;
}

/* User Avatar */
.navbar-user {
  position: relative;
}

.user-avatar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #2c3e50;
}

.user-avatar:hover {
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  color: white;
  border-color: #0080ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
}

.user-avatar i {
  font-size: 1.2rem;
}

.user-name {
  font-size: 0.9rem;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Dropdown Menus */
.dropdown-menu-custom {
  position: absolute;
  display: none;
  flex-direction: column;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu-custom.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px 8px 0 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.dropdown-header i {
  font-size: 1.5rem;
  color: #0080ff;
}

.dropdown-header span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #dee2e6 50%, transparent 100%);
  margin: 0.5rem 0;
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: #2c3e50;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dropdown-item-custom:hover {
  background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.15) 100%);
  color: #0080ff;
  padding-left: 1.5rem;
}

.dropdown-item-custom.text-danger {
  color: #dc3545;
}

.dropdown-item-custom.text-danger:hover {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.15) 100%);
  color: #dc3545;
}

.dropdown-item-custom i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.dropdown-item-custom img {
  object-fit: cover;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

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

/* Technique, voucher and other homepage styles moved to homepage-modern.css */

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

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

/* Homepage heading styles moved to homepage-modern.css */

/* Review section styles moved to homepage-modern.css */

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

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

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

.stars .filled {
    color: #FFD700;
}

/* Review detail styles moved to homepage-modern.css */

/* h1-slogan, reservation-button-about-us, summary, and about-us-container styles moved to homepage-modern.css */

/* Business section heading styles moved to homepage-modern.css */

/* Voucher container styles moved to homepage-modern.css */

.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 styles moved to homepage-modern.css */

.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: 90%;
    max-width: 1400px;
    margin: 30px auto 50px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.table-container-settings h2, .table-container-profile h2 {
    width: 100%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
}

.table-container-profile h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
    border-radius: 2px;
}

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

.table-profile {
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.table-profile thead {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.table-profile th {
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e9ecef;
}

.table-profile th:first-child {
    border-radius: 12px 0 0 0;
}

.table-profile th:last-child {
    border-radius: 0 12px 0 0;
}

.table-profile td {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.table-profile tbody tr:hover {
    background: linear-gradient(135deg, rgba(0, 128, 255, 0.03) 0%, rgba(0, 128, 255, 0.05) 100%);
}

.table-profile tbody tr:last-child td {
    border-bottom: none;
}

.table-profile tbody tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.table-profile tbody tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

.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: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.25);
}

.table-settings .btn:hover,
.table-settings .deactivate-btn:hover,
.table-profile .deactivate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.3);
}

.table-settings .deactivate-btn,
.table-profile .deactivate-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.25);
}

.table-settings .deactivate-btn:hover,
.table-profile .deactivate-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.35);
}

.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;
}

/* Common styles for time-slot-select and user-select buttons */
.time-slot-select, .user-select {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Hover effect */
.time-slot-select:hover, .user-select:hover, .finish-reservation-button:hover {
    background-color: #f8f9fa;
    border-color: #0080ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.15);
}

/* Style for selected buttons */
.time-slot-select.selected, .user-select.selected {
    background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
    color: white;
    border-color: #0080ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
}

.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 - used for person selection (Roman/Evka) - circular */
.big-button.option-button-person {
    padding: 0;
    margin: 10px 0;
    font-size: 24px;
    border: 3px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    width: 120px;
    height: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.big-button.option-button-person.selected {
    border-color: #0080ff;
    box-shadow: 0 0 0 2px rgba(0, 128, 255, 0.2);
}

.big-button.option-button-person:hover {
    border-color: #0080ff;
    transform: scale(1.05);
}

/* Big button for time/duration - rectangular */
.big-button.option-button-time {
    padding: 12px 20px;
    margin: 10px;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    cursor: pointer;
    text-align: center;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.big-button.option-button-time:hover {
    background-color: #f8f9fa;
    border-color: #0080ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.15);
}

.big-button.option-button-time.selected {
    background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
    color: white;
    border-color: #0080ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
}

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

/* All reservations styles moved to all-reservations-modern.css */

.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;
}

/* Table body and action button styles moved to all-reservations-modern.css */

/* Action buttons container styles moved to all-reservations-modern.css */

.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;
}



/* ============================================
   RESPONSIVE STYLES - TABLET & MOBILE
   ============================================ */

@media screen and (max-width: 992px) {
    .modern-navbar .container-fluid {
        padding: 0 1.5rem;
    }

    .navbar-wrapper {
        height: 75px;
        gap: 1rem;
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-nav-center {
        gap: 0.25rem;
    }

    .nav-link-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .nav-link-item span {
        display: none;
    }

    .nav-link-item i {
        font-size: 1.3rem;
    }

    .btn-reservation {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .modern-navbar .container-fluid {
        padding: 0 1rem;
    }

    .navbar-wrapper {
        height: 70px;
        flex-wrap: nowrap;
    }

    .navbar-brand-section {
        order: 1;
    }

    .navbar-logo {
        height: 45px;
    }

    .navbar-nav-center {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }

    .navbar-nav-center.active {
        left: 0;
    }

    .nav-link-item {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        justify-content: flex-start;
    }

    .nav-link-item span {
        display: inline;
    }

    .nav-link-item:hover {
        transform: translateX(8px);
        background: linear-gradient(90deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 128, 255, 0.05) 100%);
    }

    .nav-link-item i {
        font-size: 1.2rem;
        width: 24px;
    }

    .navbar-actions {
        order: 3;
        gap: 0.5rem;
    }

    .btn-reservation {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-reservation span {
        display: none;
    }

    .btn-reservation i {
        font-size: 1.3rem;
    }

    .navbar-social {
        position: fixed;
        bottom: 2rem;
        left: 1.5rem;
        flex-direction: row;
        gap: 1rem;
        z-index: 999;
    }

    .navbar-nav-center.active ~ .navbar-actions .navbar-social {
        display: flex;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .language-toggle {
        width: 40px;
        height: 40px;
    }

    .user-avatar {
        padding: 0.5rem 0.75rem;
    }

    .user-name {
        display: none !important;
    }

    .dropdown-menu-custom {
        min-width: 220px;
        right: -10px;
    }
}

@media screen and (max-width: 480px) {
    .modern-navbar .container-fluid {
        padding: 0 0.75rem;
    }

    .navbar-wrapper {
        height: 65px;
    }

    .navbar-logo {
        height: 40px;
    }

    .navbar-nav-center {
        top: 65px;
        height: calc(100vh - 65px);
        width: 90%;
        max-width: 280px;
    }

    .btn-reservation {
        padding: 0.6rem 1rem;
    }

    .language-toggle,
    .user-avatar {
        width: 38px;
        height: 38px;
        padding: 0.4rem;
    }

    .dropdown-menu-custom {
        min-width: 200px;
        font-size: 0.9rem;
    }

    .dropdown-item-custom {
        padding: 0.65rem 1rem;
    }
}

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

    /* Homepage-specific styles moved to homepage-modern.css */

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

    /* Homepage navbar, contact, and about-us styles moved to homepage-modern.css */

    /* Person buttons - circular on mobile */
    .big-button.option-button-person {
        padding: 0;
        margin: 8px;
        font-size: 16px;
        border: 2px solid #ddd;
        border-radius: 50%;
        cursor: pointer;
        text-align: center;
        width: 90px;
        height: 90px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        transition: all 0.3s ease;
    }

    .big-button.option-button-person:active {
        transform: scale(0.95);
    }

    .big-button.option-button-person.selected {
        border-color: #0080ff;
        box-shadow: 0 0 0 2px rgba(0, 128, 255, 0.2);
    }

    .big-button.option-button-person img.miniature-img {
        width: 82px;
        height: 82px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Time/duration buttons - rectangular on mobile */
    .big-button.option-button-time {
        padding: 12px 18px;
        margin: 8px;
        font-size: 0.95rem;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        width: auto;
        height: auto;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .big-button.option-button-time:active {
        transform: scale(0.97);
    }

    .big-button.option-button-time.selected {
        background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
        color: white;
        border-color: #0080ff;
        box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
    }

    #person-selection {
        gap: 20px !important;
        flex-wrap: wrap;
    }

    #person-selection h3 {
        font-size: 0.95rem;
        margin-top: 8px;
        font-weight: 600;
        color: #2c3e50;
    }

    .time-slot-container {
        margin-top: 15px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 10px 5px;
    }

    .time-slot-select {
        padding: 12px 18px;
        font-size: 0.95rem;
        font-weight: 500;
        min-width: 85px;
        border-radius: 12px;
        border: 2px solid #e9ecef;
        background-color: white;
        transition: all 0.3s ease;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .time-slot-select:active {
        transform: scale(0.97);
    }

    .time-slot-select.selected {
        background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
        color: white;
        border-color: #0080ff;
        box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
    }

    .duration-container {
        width: 100%;
        gap: 10px;
        padding: 10px 5px;
    }

    .h2-margin-top-bottom {
        font-size: 1.35rem !important;
        font-weight: 700 !important;
        margin-top: 25px !important;
        margin-bottom: 20px !important;
        text-align: center;
        color: #2c3e50;
    }

    .input-container-reservation {
        margin: 10px 5px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .input-container-reservation label {
        width: 100%;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: #2c3e50;
    }

    .input-container-reservation input {
        width: 100%;
        font-size: 1rem;
        padding: 14px 16px;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        transition: all 0.3s ease;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .input-container-reservation input:focus {
        outline: none;
        border-color: #0080ff;
        box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
    }

    .finish-reservation-button {
        margin: 25px auto 20px;
        padding: 16px 40px;
        font-size: 1.05rem;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 90%;
        max-width: 320px;
        display: block;
        background: linear-gradient(135deg, #0080ff 0%, #0056b3 100%);
        color: white;
        border: none;
        border-radius: 50px;
        box-shadow: 0 6px 20px rgba(0, 128, 255, 0.35);
        text-align: center;
    }

    .finish-reservation-button:active {
        transform: translateY(1px);
        box-shadow: 0 4px 12px rgba(0, 128, 255, 0.3);
    }

    .finish-reservation-button:hover {
        background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 128, 255, 0.4);
    }

    .hr-basic-style {
        width: 90%;
        border: none;
        border-top: 1px solid #e9ecef;
        margin: 25px auto;
    }

    .hidden-element-first, .hidden-element-second, .hidden-element-third, .hidden-element-fourth {
        padding: 0 10px;
    }

    .column-container h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 700;
        color: #2c3e50;
    }

    .swal2-popup {
        width: auto;
        max-width: 95%;
        font-size: 0.95rem;
        border-radius: 20px;
    }

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

    .table-container-settings h2, .table-container-profile h2 {
        width: 100%;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #2c3e50;
        border-bottom: none;
    }

    .table-container-profile h2::after {
        width: 60px;
        height: 3px;
    }

    .table-container-profile {
        width: 95%;
        max-width: 95%;
        margin: 20px auto 40px;
        background: white;
        border-radius: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 20px 15px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .table-settings .btn,
    .table-settings .deactivate-btn,
    .table-profile .deactivate-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
        border-radius: 50px;
    }

    .table-profile th, .table-profile td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .table-profile th {
        font-size: 0.8rem;
    }

    .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 mobile styles moved to all-reservations-modern.css */

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

    /* All reservations mobile styles moved to all-reservations-modern.css */

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

    .insert-date-add-truck {
        font-size: 1rem;
        padding: 14px 16px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin: 15px auto;
        display: block;
        transition: all 0.3s ease;
    }

    .insert-date-add-truck:focus {
        outline: none;
        border-color: #0080ff;
        box-shadow: 0 0 0 3px rgba(0, 128, 255, 0.1);
    }

    .pick-date-container {
        width: 100%;
        padding: 0 10px;
    }

    #calendar {
        width: 100% !important;
        max-width: 400px;
        border-radius: 16px;
        padding: 15px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: none;
        background: white;
    }

    .reservation-box-container {
        width: 100%;
        padding: 5px;
        background-color: white;
        margin: 15px auto 30px;
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .btn {
        font-size: 10px;
    }

    /* option-button-time styles are handled by .big-button.option-button-time above */

    /* all-reservations-h2 mobile styles moved to all-reservations-modern.css */

}

/* Person card and service item styles moved to homepage-modern.css */

/* h1-slogan styles moved to homepage-modern.css */

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

/* Gallery and modal styles moved to homepage-modern.css */

  .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%;
    }
  }