/* [project]/src/app/(website)/myReservations/Components/CardReservation/CardReservation.css [app-client] (css) */
@media screen and (max-width: 358px) {
  .card-reservation-one .buttons-card-reservation {
    flex-wrap: wrap;
    width: 100%;
  }

  .card-reservation-one .buttons-card-reservation .btn-main {
    flex-grow: 1;
    flex-basis: 126px;
    width: 100%;
  }
}

/* [project]/src/app/Components/Pagination/Pagination.css [app-client] (css) */
.all-pagination .page-item .page-link, .all-pagination .break .page-link {
  color: #615e69;
  background: none;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 16px;
  font-weight: 700;
  transition: all .5s;
  display: flex;
  border-radius: 15px !important;
}

.all-pagination .page-item .page-link:focus {
  box-shadow: 0 0 0 .25rem rgba(69, 39, 117, .28) !important;
}

.all-pagination .page-item.active-1 .page-link, .all-pagination .page-item:hover .page-link {
  color: #fff !important;
  background: #452775 !important;
  border-color: #452775 !important;
}

.all-pagination .pagination {
  flex-wrap: wrap;
  justify-content: center;
}

html[dir="ltr"] .all-pagination .page-item .page-link svg {
  rotate: 180deg;
}

.all-pagination .page-item.disabled .page-link, .all-pagination .page-item.disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed !important;
  color: #fff !important;
  background: #d1d5db !important;
  border-color: #d1d5db !important;
  border-radius: 15px !important;
}

/* [project]/src/app/dashboard/express/express.css [app-client] (css) */
.express-container {
  direction: rtl;
  background-color: #fff;
  min-height: 100vh;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.tabs-container {
  gap: 10px;
  margin-bottom: 20px;
  display: flex;
}

.tab {
  cursor: pointer;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}

.tab-active {
  color: #fff;
  background-color: #2c1d65;
}

.tab-inactive {
  color: #9ca3af;
  background-color: #fff;
  border: 1px solid #e5e7eb;
}

.tab:hover {
  opacity: .9;
}

.booking-card {
  background-color: #fff;
  border-bottom: 6px solid #cf2880;
  border-right: 6px solid #cf2880;
  border-radius: 12px;
  max-width: 700px;
  height: 100%;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
}

.card-header {
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.apartment-image {
  background-color: #f3f4f6;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.building-icon {
  color: #a855f7;
  font-size: 24px;
}

.apartment-title {
  color: #452775;
  flex: 1;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.card-divider {
  background-color: #e5e7eb;
  height: 1px;
  margin: 15px 0;
}

.booking-details {
  margin-bottom: 15px;
}

.booking-info {
  align-items: center;
  gap: 15px;
  display: flex;
}

.duration {
  color: #452775;
  font-size: 14px;
  font-weight: 500;
}

.date-info {
  align-items: center;
  gap: 8px;
  display: flex;
}

.calendar-icon {
  color: #9ca3af;
  background-color: #f3f4f6;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.dates {
  color: #452775;
  font-size: 20px;
  font-weight: 700;
}

.price-section {
  margin-bottom: 20px;
}

.price-info {
  align-items: center;
  gap: 8px;
  display: flex;
}

.currency-icon {
  color: #9ca3af;
  background-color: #f3f4f6;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: bold;
  display: flex;
}

.price {
  color: #452775;
  font-size: 16px;
  font-weight: 700;
}

.currency {
  color: #452775;
  font-size: 14px;
  font-weight: 500;
}

.status-button {
  color: #452775;
  cursor: pointer;
  background-color: #f7f2ff;
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: all .3s;
}

@media (max-width: 768px) {
  .express-container {
    padding: 10px;
  }

  .booking-card {
    border-radius: 8px;
    padding: 12px;
  }

  .apartment-title {
    font-size: 16px;
  }

  .tabs-container {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
  }

  .tab {
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
  }

  .card-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .apartment-image {
    width: 35px;
    height: 35px;
  }

  .building-icon {
    font-size: 20px;
  }

  .booking-info {
    gap: 10px;
  }

  .date-info {
    gap: 6px;
  }

  .calendar-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .dates {
    font-size: 16px;
  }

  .duration {
    font-size: 12px;
  }

  .price-section {
    margin-bottom: 15px;
  }

  .currency-icon {
    width: 35px;
    height: 35px;
    font-size: 10px;
  }

  .price {
    font-size: 14px;
  }

  .currency {
    font-size: 12px;
  }

  .status-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .express-container {
    padding: 8px;
  }

  .booking-card {
    border-bottom: 4px solid #cf2880;
    border-right: 4px solid #cf2880;
    border-radius: 6px;
    padding: 10px;
  }

  .apartment-title {
    font-size: 14px;
  }

  .tab {
    padding: 8px 16px;
    font-size: 13px;
  }

  .card-header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .apartment-image {
    width: 30px;
    height: 30px;
  }

  .building-icon {
    font-size: 18px;
  }

  .calendar-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .dates {
    font-size: 14px;
  }

  .duration {
    font-size: 11px;
  }

  .currency-icon {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .price {
    font-size: 13px;
  }

  .currency {
    font-size: 11px;
  }

  .status-button {
    padding: 8px 12px;
    font-size: 13px;
  }

  .card-divider {
    margin: 6px 0;
  }

  .booking-details {
    margin-bottom: 0;
  }
}

/* [project]/src/app/(website)/myReservations/Components/TabsReservation/TabsReservation.css [app-client] (css) */
.all-tabs-reservation .tab-title .absolute {
  box-shadow: 0 0 24px rgba(0, 0, 0, .06);
  border-radius: 10px !important;
}

.all-tabs-reservation .icon-card-reservation img {
  width: 40.64px !important;
  height: 40.64px !important;
}

.all-tabs-reservation .sicon-sar {
  font-size: 13px !important;
}

.all-tabs-reservation .btn-main {
  border-radius: 12px !important;
  padding: 12px !important;
  font-size: 12px !important;
}

.all-tabs-reservation .btn-extend {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.all-tabs-reservation .btn-prev-res {
  padding-left: 35.5px !important;
  padding-right: 35.5px !important;
}

.page-width-1 {
  width: 1200px;
  margin: auto;
}

@media screen and (max-width: 1375px) {
  .page-width-1 {
    width: 1050px;
  }
}

@media screen and (max-width: 1199px) {
  .page-width-1 {
    width: 100%;
  }
}

/*# sourceMappingURL=src_app_ab51d51e._.css.map*/