@charset "UTF-8";
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Global reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --fc-today-bg-color: lightgray;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

body:not(.ea) {
  background: linear-gradient(135deg, #fff39b 0%, #ffe066 100%) fixed;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Scope main site components to exclude admin */
body:not(.ea) .app-logo {
  height: inherit;
}

body:not(.ea) #top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 60px;
  background: rgba(217, 217, 217, 0.7);
  width: 100%;
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: black;
  padding: 0 1rem;
  margin: 0;
  box-sizing: border-box;
  overflow: visible;
}
body:not(.ea) #top-nav .app-logo {
  height: 50px;
  flex-shrink: 0;
  margin-right: 1rem;
}
body:not(.ea) #top-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style-type: none;
  gap: 0.5rem;
  padding-right: 0.5rem;
}
body:not(.ea) #top-nav ul.justify-left {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  width: auto;
  overflow: hidden;
}
body:not(.ea) #top-nav ul.justify-right {
  justify-content: flex-end;
  flex-grow: 0;
  flex-shrink: 0;
  width: auto;
}
body:not(.ea) #top-nav ul.justify-right .nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  cursor: pointer;
  margin-left: 0.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}
body:not(.ea) #top-nav ul.justify-right .nav-burger svg {
  width: 20px;
  height: 20px;
  color: black;
  transition: all 300ms ease-in-out;
}
body:not(.ea) #top-nav ul.justify-right .nav-burger:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
body:not(.ea) #top-nav ul.justify-right .nav-burger:hover svg {
  color: #333;
  transform: scale(1.1);
}
body:not(.ea) #top-nav ul.justify-right .nav-burger.active {
  background-color: rgba(0, 0, 0, 0.15);
}
body:not(.ea) #top-nav ul.justify-right .nav-burger.active svg {
  color: #000;
  transform: scale(0.95);
}
body:not(.ea) #top-nav ul .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: all 300ms ease-in-out;
  border-radius: 5px;
}
body:not(.ea) #top-nav ul .container svg {
  width: 20px;
  height: 20px;
  color: black;
  transition: all 300ms ease-in-out;
}
body:not(.ea) #top-nav ul .container:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
body:not(.ea) #top-nav ul .container:hover svg {
  color: #333;
  transform: scale(1.1);
}
body:not(.ea) #top-nav ul .container.active {
  background-color: rgba(0, 0, 0, 0.15);
}
body:not(.ea) #top-nav ul .container.active svg {
  color: #000;
  transform: scale(0.95);
}
body:not(.ea) #top-nav ul li {
  white-space: nowrap;
}
body:not(.ea) #top-nav ul li a {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-decoration: none;
  color: black;
  display: block;
}
body:not(.ea) #top-nav ul li a:hover {
  color: gray;
}
body:not(.ea) #top-nav ul li.nav-item {
  font-size: 14px;
  flex-shrink: 0;
}
body:not(.ea) #top-nav ul li.nav-item a {
  font-size: 14px;
  padding: 0.2rem 0.3rem;
  white-space: nowrap;
}

body:not(.ea) #side-nav {
  display: none;
  flex-direction: column;
  background: rgba(217, 217, 217, 0.9);
  width: auto;
  min-width: auto;
  max-width: 90vw;
  color: black;
  height: auto;
  padding: 1rem;
  position: absolute;
  top: 60px;
  left: 0.5rem;
  transition: transform 500ms ease-in-out;
  transform: scaleY(1);
  transform-origin: top left;
  z-index: 1500;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 0;
}
body:not(.ea) #side-nav.show {
  display: flex;
}
body:not(.ea) #side-nav.hidden {
  transform: scaleY(0) !important;
  transition: transform 500ms;
  transform-origin: top left;
}
body:not(.ea) #side-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style-type: none;
  gap: 1rem;
  padding: 0.5rem;
  width: 100%;
}
body:not(.ea) #side-nav ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body:not(.ea) #side-nav ul li:last-child {
  border-bottom: none;
}
body:not(.ea) #side-nav ul li a {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-decoration: none;
  color: black;
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 200ms ease;
}
body:not(.ea) #side-nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333;
}

body:not(.ea) #right-nav-dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body:not(.ea) #right-nav-dropdown.show {
  opacity: 1;
  visibility: visible;
}
body:not(.ea) #right-nav-dropdown.hidden {
  opacity: 0;
  visibility: hidden;
}
body:not(.ea) #right-nav-dropdown .dropdown-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  max-width: 90vw;
  width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(217, 217, 217, 0.3);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body:not(.ea) #right-nav-dropdown.show .dropdown-content {
  transform: scale(1) translateY(0);
}
body:not(.ea) #right-nav-dropdown ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  list-style-type: none;
  gap: 0.5rem;
  padding: 0;
  width: 100%;
  margin: 0;
}
body:not(.ea) #right-nav-dropdown ul li {
  opacity: 0;
  transform: translateY(10px);
  animation: slideInUp 0.3s ease forwards;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(1) {
  animation-delay: 0.1s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(2) {
  animation-delay: 0.15s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(3) {
  animation-delay: 0.2s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(4) {
  animation-delay: 0.25s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(5) {
  animation-delay: 0.3s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(6) {
  animation-delay: 0.35s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(7) {
  animation-delay: 0.4s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(8) {
  animation-delay: 0.45s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(9) {
  animation-delay: 0.5s;
}
body:not(.ea) #right-nav-dropdown ul li:nth-child(10) {
  animation-delay: 0.55s;
}
body:not(.ea) #right-nav-dropdown ul li a {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(217, 217, 217, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 217, 217, 0.5);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
body:not(.ea) #right-nav-dropdown ul li a:hover {
  background: rgba(217, 217, 217, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
  color: #222;
}
body:not(.ea) #right-nav-dropdown ul li a .notification-badge {
  background: #ff3b3b;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  margin-left: auto;
  min-width: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 59, 59, 0.3);
}
body:not(.ea) #right-nav-dropdown ul li a .chat-notification {
  animation: pulse 2s infinite;
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-button {
  background: rgba(217, 217, 217, 0.3);
  border: 1px solid rgba(217, 217, 217, 0.5);
  color: #333;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  font-size: 16px;
  width: 100%;
  justify-content: flex-start;
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-button:hover {
  background: rgba(217, 217, 217, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-button .flag-icon {
  margin-right: 0.75rem;
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-menu {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 217, 217, 0.5);
  border-radius: 12px;
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-menu .locale-option {
  color: #333;
  padding: 0.75rem 1rem;
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-menu .locale-option:hover {
  background: rgba(217, 217, 217, 0.3);
}
body:not(.ea) #right-nav-dropdown ul li .locale-switcher .locale-menu .locale-option.active {
  background: rgba(217, 217, 217, 0.5);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.justify-left {
  justify-content: left;
}

.justify-right {
  justify-content: right;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  width: 100%;
  min-height: calc(100vh - 60px);
  flex: 1;
  padding: 2rem;
  box-sizing: border-box;
}
.content section {
  width: 100%;
  max-width: 1200px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  gap: 2rem;
  background-color: rgb(255, 243, 155);
  padding: 4rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
}
.content section > div {
  width: 100%;
}
.content section h1 {
  margin-inline: auto;
}

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

#services {
  display: flex;
  flex-direction: row;
  background: none;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
#services .service {
  width: 300px;
  min-width: 250px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.7);
  border-radius: 10px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  transition: all 300ms ease;
}
#services .service:hover {
  background-color: rgba(192, 192, 192, 0.7);
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

table {
  border-collapse: collapse;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
table img {
  width: 200px !important;
}
table thead tr {
  background-color: rgba(217, 217, 217, 0.7);
  text-align: left;
}
table th, table td {
  padding: 12px 15px;
}
table tbody tr {
  border-bottom: 1px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
table tbody tr:last-of-type {
  border-bottom: 2px solid rgba(217, 217, 217, 0.7);
}

.icon {
  width: 30px;
  display: flex;
  background-size: cover;
  margin-right: 10px;
  border: black 1px solid;
  border-radius: 20%;
  padding: 0.2rem;
  background-position: center;
}
.icon:hover {
  cursor: pointer;
  background-color: rgba(192, 192, 192, 0.7);
}

.back-icon {
  width: 50px;
}
.back-icon:hover {
  cursor: pointer;
  color: gray;
}

.btn {
  background: rgba(217, 217, 217, 0.7);
  border-radius: 6px;
  padding: 0.5rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: black;
  border: none;
}
.btn:hover {
  background: rgba(192, 192, 192, 0.7);
  cursor: pointer;
}

#tool-form-section {
  position: relative;
}
#tool-form-section form {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  width: 100%;
  padding: 2rem;
  background-color: rgb(255, 243, 155);
  border-radius: 10px;
}
#tool-form-section form input, #tool-form-section form textarea, #tool-form-section form select, #tool-form-section form button {
  width: 75%;
  height: 3rem;
  border-radius: 5px;
  border: none;
  padding: 0 1rem;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
#tool-form-section form textarea {
  padding: 1rem;
  height: 6rem;
}
#tool-form-section form table {
  width: 75%;
}
#tool-form-section form table select {
  width: fit-content !important;
}
#tool-form-section form .pricing-input {
  width: 100%;
  position: relative;
}
#tool-form-section form .append-currency {
  position: relative;
}
#tool-form-section form .append-currency::after {
  content: "€";
  color: #aaa;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  pointer-events: none;
  font-size: 1em;
  transform: translateY(-50%);
}
#tool-form-section form select, #tool-form-section form button, #tool-form-section form a {
  background: rgba(217, 217, 217, 0.7);
  color: black;
}
#tool-form-section form select:hover, #tool-form-section form button:hover, #tool-form-section form a:hover {
  background: rgba(192, 192, 192, 0.7);
}
#tool-form-section form button, #tool-form-section form a {
  cursor: pointer;
  display: block;
}
#tool-form-section form button {
  width: fit-content;
}
#tool-form-section form .icon {
  margin: auto;
}
#tool-form-section form .duration-form-group {
  display: flex;
  flex-direction: row;
  position: relative;
}
#tool-form-section form .duration-form-group div:nth-child(2) {
  position: absolute;
  right: 2rem;
  width: fit-content;
  height: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#tool-form-section form .add_item_link {
  padding: 0;
}

.clr-danger {
  color: rgba(255, 0, 0, 0.7) !important;
}
.clr-danger:hover {
  color: rgba(204, 0, 0, 0.7);
}

.border-none {
  border: none !important;
}

.bg-none {
  background: none !important;
}

.bg-danger {
  background-color: rgba(255, 0, 0, 0.7) !important;
}

.btn.bg-danger:hover {
  background-color: rgba(204, 0, 0, 0.7) !important;
}

.bg-success {
  background-color: rgba(0, 255, 0, 0.7) !important;
}

.btn.bg-success:hover {
  background-color: rgba(0, 204, 0, 0.7) !important;
}

.w-20 {
  width: 20% !important;
}

.hidden {
  transform: scaleY(0) !important;
  transition: transform 500ms;
  transform-origin: top;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-left {
  justify-content: flex-start !important;
}

.align-items-left {
  align-items: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.w-50 {
  width: 50% !important;
}

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

.d-none {
  display: none !important;
}

#calendar-holder {
  width: 100% !important;
}
@media (max-width: 1400px) {
  #calendar-holder {
    padding: 1.5rem;
  }
}
@media (max-width: 1200px) {
  #calendar-holder {
    padding: 0.75rem;
  }
}
@media (max-width: 768px) {
  #calendar-holder {
    padding: 0;
  }
  #calendar-holder .fc .fc-scrollgrid-section, #calendar-holder .fc .fc-scrollgrid-section table, #calendar-holder .fc .fc-scrollgrid-section > td {
    height: 500px !important;
    min-height: 300px !important;
  }
  #calendar-holder .fc-scrollgrid-sync-table {
    height: auto !important;
    min-height: 300px !important;
  }
  #calendar-holder .fc-daygrid-day-frame {
    min-height: 40px !important;
  }
}
#calendar-holder table tbody tr {
  background-color: white;
}
#calendar-holder .fc-header-toolbar {
  display: flex !important;
  flex-direction: row !important;
  gap: 1rem;
}
#calendar-holder .fc-header-toolbar div:nth-child(2) {
  display: none;
}
#calendar-holder .fc-header-toolbar div {
  flex-direction: row !important;
}
#calendar-holder table {
  width: 100% !important;
}

.login-form {
  min-width: 350px;
  max-width: 400px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  border-radius: 16px;
  background: rgb(255, 243, 155);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login-form > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login-form h2 {
  margin-bottom: 1rem;
  color: #333;
  font-family: Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.login-form label {
  font-size: 1rem;
  color: #444;
  font-family: Inter, sans-serif;
}
.login-form input {
  width: 100%;
  height: 2.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: Inter, sans-serif;
  background: #fff;
  transition: border-color 0.2s;
}
.login-form input:focus {
  border-color: rgba(217, 217, 217, 0.7);
  outline: none;
}
.login-form .btn {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(217, 217, 217, 0.7);
  color: #222;
  border-radius: 8px;
  transition: background 0.2s;
}
.login-form .btn:hover {
  background: rgba(192, 192, 192, 0.7);
}
.login-form .agreeTerms {
  width: 6% !important;
}
.login-form .agreeTerms {
  display: flex;
  flex-direction: column;
}

.tr-link {
  cursor: pointer;
}
.tr-link:hover {
  background-color: rgba(217, 217, 217, 0.7);
  color: black;
}

.booking-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e1e8ed;
  transition: all 0.2s ease;
  position: relative;
  margin-bottom: 1.5rem;
}
.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.booking-card .booking-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e1e8ed;
  position: relative;
}
.booking-card .booking-header .tool-info {
  padding-right: 6rem;
}
.booking-card .booking-header .tool-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.booking-card .booking-header .tool-info .tool-owner {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}
.booking-card .booking-header .status-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}
.booking-card .booking-header .status-badge.status-pending {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}
.booking-card .booking-header .status-badge.status-confirmed {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.booking-card .booking-header .status-badge.status-started {
  background: #cce5ff;
  color: #0066cc;
  border: 1px solid #99d6ff;
}
.booking-card .booking-header .status-badge.status-completed {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}
.booking-card .booking-header .status-badge.status-cancelled {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.booking-card .booking-details {
  padding: 1.5rem;
}
.booking-card .booking-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.booking-card .booking-details .detail-item:last-child {
  margin-bottom: 0;
}
.booking-card .booking-details .detail-item .icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  color: #6c757d;
  min-width: 20px;
  text-align: center;
}
.booking-card .booking-details .detail-item div {
  flex: 1;
  min-width: 0;
}
.booking-card .booking-details .detail-item div strong {
  display: block;
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.booking-card .booking-details .detail-item div p {
  margin: 0;
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.4;
}
.booking-card .booking-actions {
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, #f8f9fa, #f1f3f4);
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.booking-card .booking-actions .btn {
  flex: 1;
  min-width: 120px;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}
.booking-card .booking-actions .btn:hover {
  transform: translateY(-1px);
}
.booking-card .booking-actions .renter-notice {
  width: 100%;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #fff3cd, #ffeaa7);
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  color: #856404;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
}
.booking-card .booking-actions .renter-notice small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (max-width: 576px) {
  .booking-card .booking-header .tool-info {
    padding-right: 0;
  }
  .booking-card .booking-header .tool-info h3 {
    margin-bottom: 1rem;
  }
  .booking-card .booking-header .status-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}

a * {
  pointer-events: none;
}

.confirm-modal {
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid black;
  box-shadow: #333 0px 0px 20px;
}
.confirm-modal .modal-content {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.confirm-modal select {
  box-sizing: border-box;
  width: 100%;
  height: 2.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0 1rem;
  font-size: 1rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  min-width: 300px;
  min-height: 300px;
  position: relative;
}

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

.calendar-link {
  width: 100%;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.link {
  cursor: pointer;
  text-decoration: underline;
  width: fit-content;
}
.link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem !important;
}
.link:hover {
  color: gray;
}

.alert {
  position: absolute;
  top: 0;
  background-color: rgba(0, 255, 0, 0.4);
  border: #222 1px solid;
  padding: 1rem;
  border-radius: 5px;
  z-index: 99999999;
}

.manage-account-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure account page section is properly centered */
.content section.account-page {
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
}

/* Ensure bookings page uses full width */
.content section.bookings-unified {
  width: 100% !important;
  max-width: none !important;
  align-items: stretch;
}

.account-card, .password-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-card:hover, .password-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 243, 155, 0.5);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 243, 155, 0.8), rgba(217, 217, 217, 0.8));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 24px;
}

.card-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.welcome-message {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
  font-style: italic;
}

.account-info {
  list-style: none;
  padding: 0;
}

.account-info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1rem;
}

.account-info li:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #34495e;
}

.info-value {
  color: #2c3e50;
  background: rgba(255, 243, 155, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.password-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}

.form-input {
  padding: 1rem;
  border: 2px solid rgba(217, 217, 217, 0.5);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
  outline: none;
  border-color: rgba(255, 243, 155, 0.8);
  background: rgb(255, 255, 255);
  box-shadow: 0 0 0 3px rgba(255, 243, 155, 0.2);
}

.password-requirements {
  font-size: 0.85rem;
  color: #7f8c8d;
  background: rgba(52, 152, 219, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.submit-btn {
  background: linear-gradient(135deg, rgba(255, 243, 155, 0.9), rgba(255, 243, 155, 0.7));
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: linear-gradient(135deg, rgb(255, 243, 155), rgba(255, 243, 155, 0.8));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 243, 155, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .manage-account-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
    margin: 1rem auto;
  }
  .account-card, .password-card {
    padding: 1.5rem;
  }
  .card-title {
    font-size: 1.5rem;
  }
}
.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 2rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.content section.company-manage-page {
  display: block !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  gap: unset !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  position: relative !important;
}

.company-manage-wrapper {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.company-manage-container {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

.company-manage-wrapper .action-dashboard {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  width: 100% !important;
}

.company-manage-wrapper .action-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  width: auto !important;
  flex: none !important;
}

.company-manage-wrapper .action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 243, 155, 0.5);
}

.action-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 243, 155, 0.8), rgba(217, 217, 217, 0.8));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 32px;
}

.action-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.action-card-desc {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.action-btn {
  background: linear-gradient(135deg, rgba(255, 243, 155, 0.9), rgba(255, 243, 155, 0.7));
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.action-btn:hover {
  background: linear-gradient(135deg, rgb(255, 243, 155), rgba(255, 243, 155, 0.8));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 243, 155, 0.4);
}

.tools-section {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.company-manage-wrapper .tools-header {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 2rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 2px solid rgba(255, 243, 155, 0.5) !important;
  width: 100% !important;
}

.tools-title {
  font-size: 2rem !important;
  font-weight: 600 !important;
  color: #2c3e50 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 1rem !important;
  margin: 0 !important;
}

.tools-title-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 243, 155, 0.8), rgba(217, 217, 217, 0.8));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.add-tool-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.add-tool-btn:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.company-manage-wrapper .tools-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
  gap: 2rem !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  width: 100% !important;
}

.tool-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(255, 243, 155, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 243, 155, 0.6);
}

.tool-card.disabled {
  opacity: 0.7;
  border-color: rgba(231, 76, 60, 0.3);
}

.tool-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tool-status.active {
  background: rgba(39, 174, 96, 0.2);
  color: #27ae60;
}

.tool-status.inactive {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}

.tool-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tool-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tool-action {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  justify-content: center;
  min-width: 100px;
}

.tool-action.calendar {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.tool-action.calendar:hover {
  background: rgba(52, 152, 219, 0.2);
  transform: translateY(-1px);
}

.tool-action.edit {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
  border: 1px solid rgba(230, 126, 34, 0.3);
}

.tool-action.edit:hover {
  background: rgba(230, 126, 34, 0.2);
  transform: translateY(-1px);
}

.tool-action.toggle {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
  border: 1px solid rgba(155, 89, 182, 0.3);
}

.tool-action.toggle:hover {
  background: rgba(155, 89, 182, 0.2);
  transform: translateY(-1px);
}

.tool-action.qr {
  background: rgba(44, 62, 80, 0.1);
  color: #2c3e50;
  border: 1px solid rgba(44, 62, 80, 0.3);
}

.tool-action.qr:hover {
  background: rgba(44, 62, 80, 0.2);
  transform: translateY(-1px);
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #7f8c8d;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.empty-state-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.empty-state-desc {
  margin-bottom: 2rem;
}

.enhanced-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.enhanced-modal-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(231, 76, 60, 0.2);
}

@media (max-width: 768px) {
  .company-manage-container {
    padding: 0 1rem;
  }
  .company-manage-wrapper .action-dashboard {
    grid-template-columns: 1fr !important;
  }
  .company-manage-wrapper .tools-header {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }
  .company-manage-wrapper .tools-grid {
    grid-template-columns: 1fr !important;
  }
  .tool-actions {
    flex-direction: column;
  }
  .tool-action {
    flex: none;
  }
}
#tool-form-section #tool-collection-root {
  display: flex !important;
  flex-direction: column !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  padding: 0 !important;
  gap: 0 !important;
  max-width: 1200px !important;
  margin: 2rem auto !important;
}
#tool-form-section #tool-collection-root > div {
  width: 100% !important;
}

.tool-form-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

.form-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  color: white;
}
.form-header .form-progress {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.form-header .form-progress .progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.form-header .form-progress .progress-step.active {
  opacity: 1;
}
.form-header .form-progress .progress-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.form-header .form-progress .progress-step.active .step-number {
  background: white;
  color: #667eea;
  transform: scale(1.1);
}
.form-header .form-progress .progress-step .step-label {
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
}

.form-steps {
  flex: 1;
  position: relative;
  min-height: 500px;
}
.form-steps .form-step {
  display: block;
  padding: 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-steps .form-step.active {
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  pointer-events: auto !important;
  animation: fadeIn 0.5s ease;
}
.form-steps .form-step .step-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #333;
}
.form-steps .form-step .step-title .step-icon {
  font-size: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.form-section .form-group {
  margin-bottom: 2rem;
}
.form-section .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}
.form-section .form-group input, .form-section .form-group textarea, .form-section .form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.form-section .form-group input:focus, .form-section .form-group textarea:focus, .form-section .form-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.form-section .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.image-upload-section .image-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px dashed #d1d5db;
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(249, 250, 251, 0.5);
}
.image-upload-section .image-upload-label:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}
.image-upload-section .image-upload-label .upload-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.image-upload-section .image-upload-label .upload-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
}
.image-upload-section .image-upload-label .image-input {
  display: none;
}
.image-upload-section .image-preview {
  margin-top: 1rem;
}
.image-upload-section .image-preview img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
}
.image-upload-section .image-preview img[src]:not([src=""]) {
  display: block;
}

.pricing-section .pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.pricing-section .pricing-header h3 {
  font-size: 1.4rem;
  color: #333;
}
.pricing-section .pricing-header .add-pricing-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pricing-section .pricing-header .add-pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.pricing-section .pricing-header .add-pricing-btn .btn-icon {
  font-size: 1.1rem;
}
.pricing-section .pricing-table .pricing-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #e1e5e9;
}
.pricing-section .pricing-table .pricing-row .pricing-duration {
  display: flex;
  gap: 0.5rem;
  align-items: end;
}
.pricing-section .pricing-table .pricing-row .pricing-duration > div {
  flex: 1;
}
.pricing-section .pricing-table .pricing-row .remove-pricing-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.pricing-section .pricing-table .pricing-row .remove-pricing-btn:hover {
  background: rgba(239, 68, 68, 0.1);
}

.location-section .address-search {
  position: relative;
  margin-bottom: 2rem;
}
.location-section .address-search .search-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}
.location-section .address-search .address-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.location-section .address-search .address-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.location-section .address-search .address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #e1e5e9;
  border-top: none;
  border-radius: 0 0 12px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.location-section .address-search .address-suggestions.show {
  display: block;
}
.location-section .address-search .address-suggestions li {
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}
.location-section .address-search .address-suggestions li:hover {
  background: rgba(102, 126, 234, 0.05);
}
.location-section .address-search .address-suggestions li:last-child {
  border-bottom: none;
}
.location-section .map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.location-section .map-container .location-map {
  height: 400px;
  width: 100%;
}

.availability-section .calendar-instructions {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.availability-section .calendar-instructions h3 {
  margin-bottom: 1rem;
  color: #1e40af;
}
.availability-section .calendar-instructions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.availability-section .calendar-instructions ul li {
  margin-bottom: 0.5rem;
  color: #374151;
}
.availability-section .calendar-instructions ul li:last-child {
  margin-bottom: 0;
}
.availability-section .calendar-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.availability-section .calendar-container #calendar-holder .fc {
  font-family: inherit;
}
.availability-section .calendar-container #calendar-holder .fc .fc-button {
  background: #667eea;
  border-color: #667eea;
}
.availability-section .calendar-container #calendar-holder .fc .fc-button:hover {
  background: #5a6fd8;
  border-color: #5a6fd8;
}
.availability-section .calendar-container #calendar-holder .fc .fc-today {
  background-color: rgba(102, 126, 234, 0.1) !important;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: rgba(248, 250, 252, 0.8);
  border-top: 1px solid #e1e5e9;
}
.form-navigation .nav-btn, .form-navigation .submit-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-navigation .nav-btn:hover, .form-navigation .submit-btn:hover {
  transform: translateY(-2px);
}
.form-navigation .nav-btn {
  background: #6b7280;
  color: white;
}
.form-navigation .nav-btn:hover {
  background: #4b5563;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}
.form-navigation .nav-btn.next-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.form-navigation .nav-btn.next-btn:hover {
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.form-navigation .submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  font-size: 1.1rem;
}
.form-navigation .submit-btn:hover {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@media (max-width: 768px) {
  .tool-form-container {
    margin: 1rem;
    padding: 0;
  }
  .tool-form-container .form-header {
    padding: 1.5rem 1rem;
  }
  .tool-form-container .form-header .form-progress {
    gap: 1rem;
  }
  .tool-form-container .form-header .form-progress .progress-step .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  .tool-form-container .form-header .form-progress .progress-step .step-label {
    font-size: 0.8rem;
  }
  .tool-form-container .form-steps .form-step {
    padding: 2rem 1rem;
  }
  .tool-form-container .form-steps .form-step .step-title {
    font-size: 1.5rem;
  }
  .tool-form-container .pricing-section .pricing-table .pricing-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .tool-form-container .pricing-section .pricing-table .pricing-row .pricing-duration {
    justify-content: space-between;
  }
  .tool-form-container .pricing-section .pricing-table .pricing-row .remove-pricing-btn {
    justify-self: end;
  }
  .tool-form-container .form-navigation {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  .tool-form-container .form-navigation .nav-btn, .tool-form-container .form-navigation .submit-btn {
    width: 100%;
  }
}
.content #tool-search-page.tool-search-container {
  background-color: rgb(255, 243, 155) !important;
  width: 100% !important;
  height: auto !important;
  padding: 2rem 2rem !important;
  gap: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  max-width: 1400px;
  margin: 2rem auto;
  display: block !important;
  flex-direction: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
}

.search-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 243, 155, 0.3));
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.search-header .page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.search-header .page-title .title-icon {
  font-size: 2.8rem;
}
.search-header .page-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 500;
}

.search-form-container {
  margin-bottom: 3rem;
}

.search-form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.search-form .search-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .search-form .search-form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.search-form .search-field .search-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1rem;
}
.search-form .search-field .search-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}
.search-form .search-field .search-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.search-form .search-field .search-input::placeholder {
  color: #9ca3af;
}
.search-form .search-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.search-form .search-filters .filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
  color: #2c3e50;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.search-form .search-filters .filter-checkbox:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-form .search-filters .filter-checkbox input[type=checkbox] {
  display: none;
}
.search-form .search-filters .filter-checkbox .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e1e5e9;
  border-radius: 4px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.search-form .search-filters .filter-checkbox .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.search-form .search-filters .filter-checkbox input[type=checkbox]:checked + .checkbox-custom {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-color: #dc2626;
}
.search-form .search-filters .filter-checkbox input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
}
.search-form .search-filters .filter-checkbox .checkbox-label {
  font-size: 0.95rem;
  user-select: none;
}
.search-form .search-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.search-form .search-actions .search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form .search-actions .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.search-form .search-actions .search-btn .btn-icon {
  font-size: 1.1rem;
}
.search-form .search-actions .clear-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
  border: 2px solid #6b7280;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form .search-actions .clear-btn:hover {
  background: #6b7280;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}
.search-form .search-actions .clear-btn .btn-icon {
  font-size: 1.1rem;
}

.search-results .results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}
@media (max-width: 768px) {
  .search-results .results-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.search-results .results-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}
.search-results .results-header .results-count {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.tool-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}
.tool-card.filtered-out {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(102, 126, 234, 0.3);
}
.tool-card.own-tool {
  border-color: rgba(16, 185, 129, 0.4);
}
.tool-card.own-tool:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}
.tool-card .owner-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.tool-card .owner-badge .owner-icon {
  font-size: 1rem;
}
.tool-card .tool-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tool-card .tool-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tool-card .tool-image .no-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-card .tool-image .no-image-placeholder .placeholder-icon {
  font-size: 3rem;
  color: #9ca3af;
}
.tool-card .tool-image .availability-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.tool-card .tool-image .availability-badge .calendar-link {
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.tool-card .tool-image .availability-badge .calendar-link:hover {
  background: #667eea;
  color: white;
  transform: scale(1.05);
}
.tool-card:hover .tool-image img {
  transform: scale(1.05);
}
.tool-card .tool-content {
  padding: 1.5rem;
}
.tool-card .tool-content .tool-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.tool-card .tool-content .tool-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #6b7280;
}
.tool-card .tool-content .tool-location .location-icon {
  font-size: 1.1rem;
  color: #ef4444;
}
.tool-card .tool-content .tool-location .location-text {
  font-size: 0.95rem;
  font-weight: 500;
}
.tool-card .tool-content .tool-pricing {
  margin-bottom: 1.5rem;
}
.tool-card .tool-content .tool-pricing .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.tool-card .tool-content .tool-pricing .price-item:last-child {
  border-bottom: none;
}
.tool-card .tool-content .tool-pricing .price-item .price-duration {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}
.tool-card .tool-content .tool-pricing .price-item .price-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #059669;
}
.tool-card .tool-content .tool-actions {
  display: flex;
  gap: 0.5rem;
}
.tool-card .tool-content .tool-actions .calendar-link {
  flex: 1;
  padding: 0.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.tool-card .tool-content .tool-actions .calendar-link:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.tool-card .tool-content .tool-actions .view-tool-btn {
  flex: 1;
  padding: 0.8rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.tool-card .tool-content .tool-actions .view-tool-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.empty-results {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.empty-results .empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #9ca3af;
}
.empty-results .empty-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.empty-results .empty-message {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.empty-results .show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.empty-results .show-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.enhanced-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
.enhanced-modal .enhanced-modal-content {
  background: white;
  border-radius: 20px;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalSlideIn 0.3s ease;
  margin: auto;
}
.enhanced-modal .enhanced-modal-content .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enhanced-modal .enhanced-modal-content .modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
.enhanced-modal .enhanced-modal-content .modal-header .modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.enhanced-modal .enhanced-modal-content .modal-header .modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.enhanced-modal .enhanced-modal-content .modal-body {
  padding: 2rem;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}
.enhanced-modal .enhanced-modal-content .modal-body .calendar-instructions {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.enhanced-modal .enhanced-modal-content .modal-body .calendar-instructions p {
  margin: 0;
  color: #1e40af;
  font-weight: 500;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc {
  font-family: inherit;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-button {
  background: #667eea;
  border-color: #667eea;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-button:hover {
  background: #5a6fd8;
  border-color: #5a6fd8;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-event {
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-event.available {
  background: #10b981;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-event.available:hover {
  background: #059669;
}
.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder .fc .fc-event.unavailable {
  background: #ef4444;
  cursor: not-allowed;
}

.booking-form .form-group {
  margin-bottom: 1.5rem;
}
.booking-form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #2c3e50;
}
.booking-form .form-group .form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-form .form-group .form-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.booking-form .booking-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .booking-form .booking-actions {
    flex-direction: column;
  }
}
.booking-form .booking-actions .cancel-btn {
  flex: 1;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 2px solid #ef4444;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-form .booking-actions .cancel-btn:hover {
  background: #ef4444;
  color: white;
}
.booking-form .booking-actions .confirm-btn {
  flex: 1;
  padding: 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.booking-form .booking-actions .confirm-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@media (max-width: 768px) {
  .tool-search-container {
    padding: 0 1rem;
    margin: 1rem auto;
  }
  .search-header {
    padding: 1.5rem 1rem;
  }
  .search-header .page-title {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .search-header .page-title .title-icon {
    font-size: 2rem;
  }
  .search-header .page-subtitle {
    font-size: 1rem;
  }
  .search-form {
    padding: 1.5rem 1rem;
  }
  .search-actions {
    flex-direction: column;
  }
  .search-actions .search-btn, .search-actions .clear-btn {
    width: 100%;
    justify-content: center;
  }
  .tool-card .tool-content {
    padding: 1rem;
  }
  .tool-card .tool-content .tool-name {
    font-size: 1.1rem;
  }
  .tool-card .tool-content .tool-pricing .price-item {
    font-size: 0.9rem;
  }
  .enhanced-modal .enhanced-modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
  .enhanced-modal .enhanced-modal-content .modal-body {
    padding: 1rem;
  }
  #calendar-modal.enhanced-modal .enhanced-modal-content {
    width: 95vw !important;
    max-width: 1400px !important;
    min-width: 200px !important;
  }
  #calendar-modal.enhanced-modal .enhanced-modal-content .modal-body {
    min-height: 600px;
    display: flex;
    flex-direction: column;
  }
  #calendar-modal.enhanced-modal .enhanced-modal-content .modal-body #calendar-holder {
    flex: 1;
    min-height: 500px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  #calendar-modal .enhanced-modal-content {
    width: calc(100vw - 2rem) !important;
    height: calc(100vh - 4rem);
    margin: 2rem 1rem;
    max-height: calc(100vh - 4rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: auto;
  }
  #calendar-modal .enhanced-modal-content .modal-header {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
  }
  #calendar-modal .enhanced-modal-content .modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
  }
  #calendar-modal .enhanced-modal-content .modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  #calendar-modal .enhanced-modal-content .modal-body .calendar-instructions {
    padding: 0.5rem 1rem;
    margin: 0;
    flex-shrink: 0;
  }
  #calendar-modal .enhanced-modal-content .modal-body .calendar-instructions p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
  }
  #calendar-modal .enhanced-modal-content .modal-body #calendar-holder {
    flex: 1;
    width: 100%;
    min-height: 400px;
    padding: 0.5rem 1rem 1rem;
  }
}
@media (max-width: 768px) {
  .fc {
    font-size: 0.85rem !important;
    width: 100% !important;
  }
  .fc .fc-header-toolbar {
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  .fc .fc-header-toolbar .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .fc .fc-toolbar-title {
    font-size: 1rem;
    margin: 0 0.5rem;
  }
  .fc .fc-button-group .fc-button {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    min-height: 2rem;
    border-radius: 4px;
  }
  .fc .fc-button-group .fc-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .fc .fc-button {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    min-height: 2rem;
    border-radius: 4px;
  }
  .fc .fc-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .fc .fc-view-harness {
    width: 100% !important;
  }
  .fc .fc-col-header-cell {
    padding: 0.25rem;
    font-size: 0.7rem;
    min-width: 30px !important;
    width: auto !important;
  }
  .fc .fc-scrollgrid-sync-table {
    width: 100% !important;
    table-layout: fixed !important;
  }
  .fc .fc-col-header,
  .fc .fc-col-header-cell-cushion {
    width: auto !important;
    min-width: 30px !important;
  }
  .fc th[role=presentation] {
    width: auto !important;
    min-width: 30px !important;
  }
  .fc .fc-daygrid-day {
    min-height: 3.5rem;
  }
  .fc .fc-daygrid-day-number {
    font-size: 0.75rem;
    padding: 2px 4px;
  }
  .fc .fc-daygrid-day-events {
    margin-top: 1px;
  }
  .fc .fc-event {
    font-size: 0.65rem;
    padding: 1px 2px;
    margin: 1px 0;
    min-height: auto;
    border-radius: 3px;
    cursor: pointer;
    line-height: 1.2;
  }
  .fc .fc-event:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .fc .fc-event-title {
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fc .fc-event-time {
    display: none;
  }
  .fc .fc-daygrid-event-dot {
    display: none;
  }
  .fc .fc-daygrid-more-link {
    font-size: 0.65rem;
    margin-top: 1px;
  }
  .fc .fc-daygrid-day-frame {
    min-height: 50px;
    cursor: pointer;
  }
  .fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(33, 150, 243, 0.1) !important;
  }
  .fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    background-color: #2196F3;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px;
  }
  .fc .fc-popover {
    max-width: calc(100vw - 20px);
    max-height: 300px;
    overflow-y: auto;
  }
  .fc .fc-popover-header {
    padding: 8px;
    font-size: 0.9rem;
  }
  .fc .fc-popover-body {
    padding: 8px;
  }
  .fc .fc-toolbar-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .fc .fc-prev-button,
  .fc .fc-next-button {
    min-width: 40px;
    min-height: 40px;
  }
  .fc .fc-list {
    width: 100%;
  }
  .fc .fc-list .fc-list-event {
    font-size: 0.9rem;
    min-height: 3rem;
  }
  .fc .fc-list .fc-list-event:hover {
    background-color: #f0f9ff;
    cursor: pointer;
  }
  .fc .fc-list .fc-list-event .fc-list-event-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
  }
  .fc .fc-list .fc-list-event-title {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .fc .fc-list .fc-list-event-time {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .fc .fc-list-day-cushion {
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
  }
  .fc .fc-popover {
    max-width: calc(100vw - 2rem);
  }
  .fc .fc-timeGrid3Day-view .fc-timegrid-slot,
  .fc .fc-timegrid .fc-timegrid-slot {
    height: 2rem;
  }
  .fc .fc-timeGrid3Day-view .fc-timegrid-slot-label,
  .fc .fc-timegrid .fc-timegrid-slot-label {
    font-size: 0.65rem;
    padding: 0.25rem;
  }
  .fc .fc-timeGrid3Day-view .fc-col-header-cell,
  .fc .fc-timegrid .fc-col-header-cell {
    font-size: 0.75rem;
    padding: 0.5rem 0.25rem;
  }
  .fc .fc-timeGrid3Day-view .fc-timegrid-event,
  .fc .fc-timegrid .fc-timegrid-event {
    font-size: 0.7rem;
    padding: 2px;
    border-radius: 3px;
  }
  .fc .fc-timeGrid3Day-view .fc-event-title,
  .fc .fc-timeGrid3Day-view .fc-event-time,
  .fc .fc-timegrid .fc-event-title,
  .fc .fc-timegrid .fc-event-time {
    font-size: 0.65rem;
    line-height: 1.2;
  }
  .fc .fc-timeGrid3Day-view .fc-timegrid-axis,
  .fc .fc-timegrid .fc-timegrid-axis {
    width: 40px !important;
  }
  .fc .fc-timeGrid3Day-button,
  .fc .fc-listWeek-button {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
    min-height: 36px !important;
  }
  .fc .fc-daygrid,
  .fc .fc-daygrid-body,
  .fc .fc-scrollgrid,
  .fc .fc-timegrid-body {
    width: 100% !important;
  }
  .fc .fc-scrollgrid table {
    width: 100% !important;
    table-layout: auto !important;
  }
  .empty-results {
    padding: 2rem 1rem;
  }
  .empty-results .empty-title {
    font-size: 1.5rem;
  }
  .empty-results .empty-message {
    font-size: 1rem;
  }
}
.content #tool-display-page.tool-display-container {
  background-color: rgb(255, 243, 155) !important;
  width: 100% !important;
  height: auto !important;
  padding: 2rem !important;
  gap: 2rem !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  max-width: 1600px;
  margin: 2rem auto;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}

.tool-header {
  margin-bottom: 2rem;
}
.tool-header .back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.tool-header .back-button:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #2c3e50;
}
.tool-header .back-button svg {
  width: 18px;
  height: 18px;
}

.tool-details-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}
.tool-details-card .owner-banner {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 1.5rem;
  margin: -2.5rem -2.5rem 2rem -2.5rem;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.tool-details-card .owner-banner .owner-icon {
  font-size: 1.5rem;
}
.tool-details-card .tool-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .tool-details-card .tool-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.tool-details-card .tool-image-section .tool-main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.tool-details-card .tool-image-section .tool-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tool-details-card .tool-image-section .tool-image-placeholder .placeholder-icon {
  font-size: 4rem;
  color: #9ca3af;
}
.tool-details-card .tool-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tool-details-card .tool-info-section .tool-title-area .tool-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}
.tool-details-card .tool-info-section .tool-description h3,
.tool-details-card .tool-info-section .tool-location h3,
.tool-details-card .tool-info-section .tool-pricing h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tool-details-card .tool-info-section .tool-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
.tool-details-card .tool-info-section .tool-location .location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.tool-details-card .tool-info-section .tool-location .location-link:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}
.tool-details-card .tool-info-section .tool-location .location-link svg {
  width: 16px;
  height: 16px;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .pricing-card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .pricing-card:hover {
  border-color: #667eea;
  background: rgb(255, 255, 255);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .pricing-card .pricing-duration {
  font-size: 1rem;
  font-weight: 600;
  color: #4b5563;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .pricing-card .pricing-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .no-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  border-radius: 12px;
  color: #dc2626;
  font-weight: 600;
}
.tool-details-card .tool-info-section .tool-pricing .pricing-cards .no-pricing .no-pricing-icon {
  font-size: 1.5rem;
}

.calendar-section .calendar-header {
  text-align: center;
  margin-bottom: 2rem;
}
.calendar-section .calendar-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.calendar-section .calendar-header .calendar-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}
.calendar-section .calendar-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.calendar-section .calendar-container #calendar-holder .fc {
  font-family: inherit;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-button {
  background: #667eea;
  border-color: #667eea;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-button:hover {
  background: #5a6fd8;
  border-color: #5a6fd8;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-event {
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-event.available {
  background: #10b981;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-event.available:hover {
  background: #059669;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-event.unavailable {
  background: #ef4444;
  cursor: not-allowed;
}
.calendar-section .calendar-container #calendar-holder .fc .fc-today {
  background-color: rgba(102, 126, 234, 0.1) !important;
}
.calendar-section .calendar-container #calendar-holder.owner-calendar .fc-event {
  cursor: default !important;
}
.calendar-section .calendar-container #calendar-holder.owner-calendar .fc-event:hover {
  background: #6b7280 !important;
}

@media (max-width: 768px) {
  .content #tool-display-page.tool-display-container {
    padding: 1rem !important;
    margin: 1rem auto !important;
  }
  .tool-details-card {
    padding: 1.5rem;
  }
  .tool-details-card .tool-info-section .tool-title-area .tool-title {
    font-size: 2rem;
  }
  .calendar-section .calendar-header h2 {
    font-size: 1.75rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .calendar-section .calendar-container {
    padding: 1rem;
  }
}
.content #tool-display-page.tool-display-container .calendar-section {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container {
  width: 100% !important;
  padding: 1.5rem !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder {
  height: 500px !important;
  width: 100% !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc {
  height: 500px !important;
  width: 100% !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-view-harness {
  height: auto !important;
  width: 100% !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-scrollgrid, .content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-scrollgrid-section {
  width: 100% !important;
  overflow-x: auto !important;
  height: 100% !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-scrollgrid .fc-scrollgrid-sync-table, .content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-scrollgrid-section .fc-scrollgrid-sync-table {
  width: 100% !important;
  min-width: 800px !important;
  table-layout: auto !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-daygrid-day {
  min-width: 140px !important;
  width: auto !important;
  padding: 4px !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-col-header-cell {
  min-width: 140px !important;
  width: auto !important;
  padding: 8px 6px !important;
  font-weight: 600 !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-event {
  font-size: 10px !important;
  padding: 2px 4px !important;
  margin: 1px !important;
  border-radius: 3px !important;
  overflow: visible !important;
  white-space: normal !important;
  line-height: 1.2 !important;
  max-width: none !important;
  width: auto !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-event-title {
  overflow: visible !important;
  text-overflow: clip !important;
  display: block !important;
}
.content #tool-display-page.tool-display-container .calendar-section .calendar-container #calendar-holder .fc .fc-daygrid-event-harness {
  margin-right: 2px !important;
}
.content #tool-display-page.tool-display-container .fc-event[style*="#6c757d"] {
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
}
.content #tool-display-page.tool-display-container .fc-event.in-basket {
  position: relative;
  border: 2px solid #28a745 !important;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.3) !important;
}
.content #tool-display-page.tool-display-container .fc-event.in-basket::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  #top-nav ul {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }
  #top-nav ul li.nav-item {
    font-size: 14px;
  }
  #top-nav ul li.nav-item a {
    font-size: 14px;
    padding: 0.2rem 0.4rem;
  }
}
@media (max-width: 900px) {
  #top-nav ul {
    gap: 0.5rem;
    padding-right: 0.5rem;
  }
  #top-nav ul li.nav-item {
    font-size: 13px;
  }
  #top-nav ul li.nav-item a {
    font-size: 13px;
    padding: 0.2rem 0.3rem;
  }
}
@media (max-width: 768px) {
  #top-nav {
    padding: 0 0.5rem;
  }
  #top-nav .app-logo {
    height: 45px;
    margin-right: 0.5rem;
  }
  #top-nav ul {
    gap: 0.5rem;
    padding-right: 0.5rem;
  }
  #top-nav ul.justify-right {
    flex-wrap: nowrap;
    overflow: hidden;
  }
  #top-nav ul li.nav-item {
    font-size: 12px;
  }
  #top-nav ul li.nav-item a {
    font-size: 12px;
    padding: 0.2rem 0.4rem;
  }
  #side-nav {
    max-width: calc(100% - 1rem);
    left: 0.5rem;
    border-radius: 0 0 10px 10px;
  }
}
@media (max-width: 1200px) {
  #top-nav ul.justify-left li:not(.container) {
    display: none;
  }
}
@media (max-width: 1000px) {
  #top-nav ul.justify-right .nav-item {
    display: none;
  }
  #top-nav ul.justify-right .nav-burger {
    display: flex !important;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
}
@media (max-width: 600px) {
  #top-nav ul.justify-right .nav-item {
    display: none;
  }
  #top-nav ul.justify-right .nav-burger {
    display: flex !important;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
  }
}
@media (max-width: 480px) {
  #top-nav {
    padding: 0 0.25rem;
  }
  #top-nav .app-logo {
    height: 40px;
    margin-right: 0.25rem;
  }
  #top-nav ul {
    gap: 0.1rem;
  }
  #top-nav ul.justify-left {
    flex-shrink: 0;
  }
  #top-nav ul.justify-left .container {
    padding: 0.1rem;
  }
  #top-nav ul.justify-left .container .burger-icon {
    width: 25px;
    height: 2.5px;
  }
  #top-nav ul.justify-right .nav-item {
    display: none !important;
  }
  #side-nav ul li a {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .content {
    padding: 1rem;
  }
  .content section {
    width: 100%;
    max-width: none;
    padding: 2rem 1rem;
  }
  #services {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  #services .service {
    width: 100%;
    max-width: 350px;
    height: 150px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  #services .service {
    height: 120px;
    font-size: 14px;
    padding: 0.75rem;
  }
}
@media (max-width: 768px) {
  #tool-form-section form {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  #tool-form-section form input, #tool-form-section form textarea, #tool-form-section form select, #tool-form-section form button {
    width: 100%;
    font-size: 14px;
  }
  #tool-form-section form table {
    width: 100%;
  }
  #tool-form-section form table th, #tool-form-section form table td {
    padding: 8px 10px;
    font-size: 14px;
  }
  .login-form, .password-form {
    padding: 1.5rem;
  }
  .login-form .form-group, .password-form .form-group {
    margin-bottom: 1rem;
  }
  .login-form .form-group input, .password-form .form-group input {
    font-size: 14px;
  }
  .login-form .btn, .password-form .btn {
    width: 100%;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #tool-form-section form {
    padding: 1rem;
    gap: 1rem;
  }
  #tool-form-section form input, #tool-form-section form textarea, #tool-form-section form select, #tool-form-section form button {
    font-size: 13px;
    height: 2.5rem;
  }
  #tool-form-section form textarea {
    height: 5rem;
  }
}
@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    min-width: 100%;
  }
  table th, table td {
    padding: 8px 6px;
    font-size: 13px;
  }
  table img {
    width: 120px !important;
  }
}
@media (max-width: 480px) {
  body:not(.ea) table th, body:not(.ea) table td {
    padding: 6px 4px;
    font-size: 12px;
  }
  body:not(.ea) table img {
    width: 100px !important;
  }
}
/* Authentication Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
  animation: modalFadeIn 0.3s ease;
}
.modal-overlay[style*=flex] {
  display: flex !important;
}

.modal-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  animation: modalSlideUp 0.3s ease;
  position: relative;
}

.modal-header {
  background: linear-gradient(135deg, rgb(255, 243, 155) 0%, rgba(255, 243, 155, 0.8) 50%, rgba(255, 243, 155, 0.6) 100%);
  color: #2c3e50;
  padding: 2rem 1.5rem !important;
  text-align: center;
  position: relative;
}
.modal-header .logo-section .logo-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.modal-header .logo-section .logo-image:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.modal-header .logo-section .brand-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.modal-header .logo-section .brand-tagline {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
  font-style: italic;
  color: #2c3e50;
}
.modal-header .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  color: #2c3e50;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal-header .modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem 1.5rem !important;
}
.modal-body .auth-form .form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-align: center;
}
.modal-body .auth-form .form-group {
  margin-bottom: 1.25rem !important;
}
.modal-body .auth-form .form-group .form-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem !important;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
}
.modal-body .auth-form .form-group .form-label .input-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 243, 155, 0.8);
}
.modal-body .auth-form .form-group .form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(217, 217, 217, 0.7);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
}
.modal-body .auth-form .form-group .form-input:focus {
  outline: none;
  border-color: rgb(255, 243, 155);
  background: rgb(255, 255, 255);
  box-shadow: 0 0 0 3px rgba(255, 243, 155, 0.3);
}
.modal-body .auth-form .form-group .form-input::placeholder {
  color: #9ca3af;
  font-style: italic;
}
.modal-body .auth-form .form-group.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.modal-body .auth-form .form-group.checkbox-group .form-checkbox {
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.modal-body .auth-form .form-group.checkbox-group .checkbox-label {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.4;
  cursor: pointer;
}
.modal-body .auth-form .auth-button {
  width: 100%;
  background: linear-gradient(135deg, rgb(255, 243, 155) 0%, rgba(255, 243, 155, 0.9) 100%);
  border: 2px solid rgba(44, 62, 80, 0.1);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 243, 155, 0.3);
}
.modal-body .auth-form .auth-button .button-icon {
  width: 20px;
  height: 20px;
}
.modal-body .auth-form .auth-button:hover {
  background: linear-gradient(135deg, rgb(255, 243, 155) 0%, rgba(255, 243, 155, 0.95) 100%);
  border-color: rgba(44, 62, 80, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 243, 155, 0.5);
}
.modal-body .auth-form .auth-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(255, 243, 155, 0.4);
}
.modal-body .auth-footer {
  text-align: center;
  padding: 1.5rem 1rem 0 1rem !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 1rem !important;
}
.modal-body .auth-footer .auth-link-text {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1rem !important;
  font-weight: 500;
}
.modal-body .auth-footer .auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 280px;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 2px solid rgba(255, 243, 155, 0.6);
  border-radius: 12px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.modal-body .auth-footer .auth-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(255, 243, 155) 0%, rgba(255, 243, 155, 0.8) 100%);
  transition: left 0.3s ease;
  z-index: -1;
}
.modal-body .auth-footer .auth-link:hover {
  color: #2c3e50;
  border-color: rgb(255, 243, 155);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 243, 155, 0.4);
  text-decoration: none;
}
.modal-body .auth-footer .auth-link:hover::before {
  left: 0;
}
.modal-body .auth-footer .auth-link .link-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.modal-body .auth-footer .auth-link:hover .link-icon {
  transform: scale(1.1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 768px) {
  .modal-container {
    width: 90%;
    max-height: 80vh;
    max-width: 400px;
  }
  .modal-header {
    padding: 1.75rem 1.5rem !important;
  }
  .modal-header .logo-section .logo-image {
    width: 70px;
    height: 70px;
  }
  .modal-header .logo-section .brand-title {
    font-size: 1.75rem;
  }
  .modal-header .logo-section .brand-tagline {
    font-size: 0.8rem;
  }
  .modal-header .modal-close {
    width: 35px;
    height: 35px;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 18px;
  }
  .modal-body {
    padding: 1.75rem 1.5rem !important;
  }
  .modal-body .auth-form .form-title {
    font-size: 1.3rem;
  }
  .modal-body .auth-form .form-group {
    margin-bottom: 1rem;
  }
  .modal-body .auth-form .form-group .form-label {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  .modal-body .auth-form .form-group .form-label .input-icon {
    width: 18px;
    height: 18px;
  }
  .modal-body .auth-form .form-group .form-input {
    padding: 0.875rem;
    font-size: 0.95rem;
  }
  .modal-body .auth-form .auth-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
  }
  .modal-body .auth-form .auth-button .button-icon {
    width: 18px;
    height: 18px;
  }
  .modal-body .auth-footer {
    padding: 1.25rem 1rem 0 1rem !important;
  }
  .modal-body .auth-footer .auth-link-text {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  .modal-body .auth-footer .auth-link {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    max-width: 260px;
  }
  .modal-body .auth-footer .auth-link .link-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .modal-container {
    width: 95%;
    max-height: 75vh;
    border-radius: 15px;
    max-width: 350px;
  }
  .modal-header {
    padding: 1.5rem 1rem !important;
  }
  .modal-header .logo-section .logo-image {
    width: 60px;
    height: 60px;
  }
  .modal-header .logo-section .brand-title {
    font-size: 1.5rem;
  }
  .modal-header .logo-section .brand-tagline {
    font-size: 0.75rem;
  }
  .modal-body {
    padding: 1.5rem 1rem !important;
  }
  .modal-body .auth-form .form-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  .modal-body .auth-form .form-group {
    margin-bottom: 1rem;
  }
  .modal-body .auth-form .form-group .form-input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  .modal-body .auth-form .auth-button {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
  }
  .modal-body .auth-footer {
    padding: 1rem 0.75rem 0 0.75rem !important;
  }
  .modal-body .auth-footer .auth-link-text {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  .modal-body .auth-footer .auth-link {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    max-width: 240px;
  }
  .modal-body .auth-footer .auth-link .link-icon {
    width: 16px;
    height: 16px;
  }
}
/* Language Switcher Styles */
body:not(.ea) .locale-switcher {
  position: relative;
  display: inline-block;
}

body:not(.ea) .locale-dropdown {
  position: relative;
}

body:not(.ea) .locale-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}
body:not(.ea) .locale-button .flag-icon {
  font-size: 1.2rem;
}
body:not(.ea) .locale-button .locale-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}
body:not(.ea) .locale-button .dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
body:not(.ea) .locale-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
body:not(.ea) .locale-button.active .dropdown-icon {
  transform: rotate(180deg);
}

body:not(.ea) .locale-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 150px;
  z-index: 1000;
  overflow: hidden;
}
body:not(.ea) .locale-menu .locale-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #2c3e50;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 500;
}
body:not(.ea) .locale-menu .locale-option .flag-icon {
  font-size: 1.1rem;
}
body:not(.ea) .locale-menu .locale-option .locale-name {
  font-size: 0.9rem;
}
body:not(.ea) .locale-menu .locale-option:hover {
  background: rgba(255, 243, 155, 0.3);
}
body:not(.ea) .locale-menu .locale-option.active {
  background: rgba(255, 243, 155, 0.5);
  font-weight: 600;
}

@media (max-width: 768px) {
  body:not(.ea) .locale-switcher .locale-button {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  body:not(.ea) .locale-switcher .locale-button .flag-icon {
    font-size: 1rem;
  }
  body:not(.ea) .locale-switcher .locale-menu {
    min-width: 130px;
  }
  body:not(.ea) .locale-switcher .locale-menu .locale-option {
    padding: 0.6rem 0.8rem;
  }
  body:not(.ea) .locale-switcher .locale-menu .locale-option .locale-name {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  body:not(.ea) .locale-switcher .locale-button .locale-text {
    display: none;
  }
}
/* EasyAdmin CSS Fixes - Override main app styles for admin pages */
body.ea {
  /* Reset conflicting global styles for admin */
  background: none !important;
  background-image: none !important;
  min-height: auto !important;
  display: block !important;
  flex-direction: unset !important;
  overflow-x: auto !important;
  /* Ensure proper box-sizing for admin */
  /* Reset margins and padding properly for admin */
  /* Ensure admin navigation works properly */
  /* Fix admin form elements */
  /* Fix admin buttons */
  /* Fix admin tables */
  /* Fix admin layout containers */
  /* Ensure proper spacing in admin */
  /* Fix admin icons */
}
body.ea *, body.ea *::before, body.ea *::after {
  box-sizing: border-box !important;
}
body.ea .main-header,
body.ea .main-sidebar,
body.ea .content-wrapper,
body.ea .main-footer,
body.ea .navbar,
body.ea .sidebar {
  margin: unset !important;
  padding: unset !important;
}
body.ea .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
}
body.ea .form-control,
body.ea .form-select,
body.ea input[type=text],
body.ea input[type=email],
body.ea input[type=password],
body.ea input[type=number],
body.ea textarea,
body.ea select {
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0.375rem 0.75rem !important;
}
body.ea .btn {
  display: inline-block !important;
  padding: 0.375rem 0.75rem !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  cursor: pointer !important;
  border: 1px solid transparent !important;
  border-radius: 0.25rem !important;
}
body.ea table {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 1rem !important;
  background-color: transparent !important;
  border-collapse: collapse !important;
}
body.ea th, body.ea td {
  padding: 0.75rem !important;
  vertical-align: top !important;
  border-top: 1px solid #dee2e6 !important;
}
body.ea .container,
body.ea .container-fluid {
  width: 100% !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.ea .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
}
body.ea .fa, body.ea .fas, body.ea .far, body.ea .fal, body.ea .fab {
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro", "Font Awesome 5 Brands" !important;
}

@media (max-width: 768px) {
  .fc .fc-scrollgrid-section table {
    height: auto !important;
  }
  .fc-scrollgrid-section-body, .fc .fc-scrollgrid-section > td {
    height: 100px !important;
    min-height: 300px !important;
  }
  .fc .fc-daygrid-body > table > tbody > tr {
    display: grid;
    width: 64.5vw;
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .fc .fc-scrollgrid-liquid {
    height: 100% !important;
  }
}
/* Force calendar modal width - final override */
#calendar-modal .enhanced-modal-content {
  width: 95vw !important;
  max-width: 1400px !important;
  min-width: 900px !important;
}

/* Pending Users Notification in Navbar */
.pending-users-notification .pending-notification-link {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white !important;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}
.pending-users-notification .pending-notification-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  text-decoration: none;
  color: white !important;
}
.pending-users-notification .pending-notification-link .notification-icon {
  font-size: 1rem;
}
.pending-users-notification .pending-notification-link .notification-count {
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.pending-users-notification .pending-notification-link .notification-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pending-users-notification .pending-notification-link {
    gap: 0.3rem;
    padding: 0.4rem 0.6rem;
  }
  .pending-users-notification .pending-notification-link .notification-text {
    display: none;
  }
}
.basket-view {
  align-items: center !important;
  justify-content: center !important;
}

.basket-count {
  background: #e74c3c;
  color: white;
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  margin-left: 0.25rem;
  min-width: 18px;
  text-align: center;
  line-height: 1.2;
}

.basket-link {
  display: flex;
  align-items: center;
}

/* Chat Notifications */
.chat-nav-link, .btn-chat {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.notification-badge {
  background: #e74c3c;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  margin-left: 0.25rem;
  min-width: 16px;
  height: 16px;
  text-align: center;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-notification {
  background: #007bff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}
.monthly-bills-section .bills-overview, .monthly-bills-section .bills-timeline, .monthly-bills-section .page-header {
  width: 100%;
}

.bill-detail-section .bill-header, .bill-detail-section .bill-summary, .bill-detail-section .bookings-section {
  width: 100%;
}

.w-100 {
  width: 100%;
}

.m-auto {
  margin: auto;
}

.about-page {
  max-width: 720px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-page h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-page .about-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.about-page .about-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.about-page .about-card p {
  line-height: 1.7;
}
.about-page .about-card a {
  color: inherit;
  font-weight: 600;
}
.about-page .legal-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.5rem;
}
.about-page .legal-info dt {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.85rem;
  padding-top: 0.1rem;
}
.about-page .legal-info dd {
  margin: 0;
  font-size: 0.95rem;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff39b 0%, #ffe066 100%);
  width: calc(100% + 4rem);
  margin: -2rem -2rem 0 -2rem;
  flex: 1;
  min-height: calc(100vh - 60px);
}

.hero-content {
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #636e72;
  margin-bottom: 36px;
}

.hero-search-bar {
  display: flex;
  gap: 8px;
  background: white;
  border-radius: 50px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero-search-bar {
    border-radius: 12px;
    padding: 12px;
    flex-direction: column;
  }
}

.hero-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  min-width: 150px;
  padding: 8px 12px;
}
.hero-search-input::placeholder {
  color: #b2bec3;
}

.hero-search-separator {
  width: 1px;
  background-color: #dfe6e9;
  align-self: stretch;
  flex-shrink: 0;
}

.hero-search-btn {
  background: #667eea;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.hero-search-btn:hover {
  background: #5a6fd6;
}
@media (max-width: 600px) {
  .hero-search-btn {
    border-radius: 8px;
    width: 100%;
  }
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-register-btn {
  display: inline-block;
  background: #2d3436;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}
.hero-register-btn:hover {
  background: #636e72;
  color: white;
  text-decoration: none;
}

.hero-login-btn {
  display: inline-block;
  background: transparent;
  color: #2d3436;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #2d3436;
  transition: background 0.2s, color 0.2s;
}
.hero-login-btn:hover {
  background: #2d3436;
  color: white;
  text-decoration: none;
}

.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-trigger {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  padding: 4px;
  cursor: pointer;
  background: rgb(255, 243, 155);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.chatbot-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.chatbot-trigger .chatbot-trigger-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #e53e3e;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  pointer-events: none;
  animation: chatbot-badge-pulse 1.8s ease-in-out infinite;
}
.chatbot-badge.hidden {
  display: none;
}

@keyframes chatbot-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 7px rgba(229, 62, 62, 0);
  }
}
.chatbot-panel {
  width: 340px;
  max-height: 520px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  overflow: hidden;
  animation: chatbot-slide-in 250ms ease;
}

@keyframes chatbot-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgb(255, 243, 155);
}
.chatbot-header .chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-header .chatbot-header-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.chatbot-header .chatbot-header-name {
  font-weight: 600;
  font-size: 14px;
  display: block;
}
.chatbot-header .chatbot-header-sub {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
  display: block;
}
.chatbot-header .chatbot-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
}
.chatbot-header .chatbot-close:hover {
  color: black;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
}

.chatbot-msg {
  max-width: 82%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
}
.chatbot-msg.bot {
  align-self: flex-start;
  background: #f0f0f0;
  border-radius: 4px 12px 12px 12px;
}
.chatbot-msg.user {
  align-self: flex-end;
  background: rgb(255, 243, 155);
  border-radius: 12px 4px 12px 12px;
}
.chatbot-msg.separator {
  align-self: center;
  font-size: 11px;
  color: #999;
  background: none;
  padding: 4px 0;
}

.chatbot-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chatbot-suggestion-btn {
  background: white;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 200ms ease;
}
.chatbot-suggestion-btn:hover {
  background: rgb(255, 243, 155);
  border-color: transparent;
}

.chatbot-reset {
  background: none;
  border: none;
  font-size: 11px;
  color: #aaa;
  cursor: pointer;
  text-align: right;
  align-self: flex-end;
}
.chatbot-reset:hover {
  color: #666;
  text-decoration: underline;
}

@media (max-width: 400px) {
  .chatbot-panel {
    width: calc(100vw - 48px);
  }
}

/*# sourceMappingURL=app.output.css.map */
