/* Ortak tema class'ları için blue tema stilleri */
.theme-day-btn {
    background: none;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 7px 16px;
    margin-bottom: 8px;
    margin-right: 8px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    min-width: 90px;
}
.theme-day-btn.selected {
    background: linear-gradient(90deg, #2563eb 60%, #e3eefd 100%);
    color: #fff;
    border: none;
}
.theme-branch-btn {
    background: none;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 7px 0;
    margin-bottom: 8px;
    width: 100%;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
}
.theme-branch-btn:hover {
    background: linear-gradient(90deg, #2563eb 60%, #e3eefd 100%);
    color: #fff;
}
.theme-back-btn {
    background: none;
    color: #2563eb;
    border: 1.5px solid #2563eb;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 7px 0;
    text-align: center;
    text-decoration: none;
    min-width: 90px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    display: inline-block;
}
.theme-back-btn:hover {
    background: #2563eb;
    color: #fff;
}
.theme-continue-btn {
    background: linear-gradient(90deg, #2563eb 60%, #e3eefd 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 7px 0;
    min-width: 110px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    display: inline-block;
}
.theme-continue-btn:disabled {
    opacity: 0.7;
}
body { background: #f4f8fd; color: #1a2a3a; font-family: 'Segoe UI', Arial, sans-serif; margin: 0; min-height: 100vh; }
.service-list-container { max-width: 1100px; margin: 40px auto; background: #fff; border-radius: 18px; box-shadow: 0 8px 32px #b6d0f7; padding: 40px 32px; }
.service-list-title { font-size: 1.4rem; font-weight: 700; color: #2563eb; margin-bottom: 8px; }
.service-list-desc { color: #5a7be7; font-size: 0.95rem; margin-bottom: 24px; }
.service-list-search { margin-bottom: 24px; }
.service-list-search input { width: 320px; padding: 10px 16px; border-radius: 8px; border: 1px solid #b6d0f7; font-size: 15px; }
.service-tabs { display: flex; gap: 32px; margin-bottom: 24px; }
.service-tab { font-size: 0.95rem; color: #2563eb; padding: 8px 0; cursor: pointer; border-bottom: 2px solid transparent; transition: color 0.2s, border 0.2s; position: relative; z-index: 2; }
.service-tab.active { color: #1741a6; border-bottom: 2px solid #2563eb; font-weight: 600; }
.service-category-title { font-size: 1rem; font-weight: 700; color: #1741a6; margin: 32px 0 18px 0; letter-spacing: 1px; }
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
@media (max-width: 700px) {
    .service-tab { padding-right: 16px; }
    .service-cards { grid-template-columns: 1fr; gap: 18px; }
}
.service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #b6d0f7;
    padding: 0 0 0 0;
    margin-bottom: 18px;
    min-height: 120px;
    transition: box-shadow 0.2s;
    border: 1px solid #b6d0f7;
}
.service-card:hover { box-shadow: 0 4px 18px #5a7be7; }
.service-card-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
    margin-right: 18px;
}
.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 18px 0;
}
.service-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 4px;
}
.service-card-desc {
    color: #5a7be7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.service-card-info {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #2563eb;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.service-card-info .icon {
    font-size: 1.1rem;
    margin-right: 4px;
}
.service-card-price {
    font-weight: 600;
    color: #2563eb;
    font-size: 0.95rem;
}
.service-card-book {
    margin-left: auto;
    margin-right: 16px;
    padding: 8px 24px;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 1px 4px #b6d0f7;
}
.service-card-book:hover { background: #1741a6; }
.service-tabs, .service-tab { pointer-events: auto !important; }
@media (max-width: 900px) {
    .service-list-container { padding: 18px 4px; border-radius: 0; box-shadow: none; }
    .service-list-title { font-size: 1.1rem; }
    .service-list-desc { font-size: 0.85rem; }
    .service-list-search input { width: 100%; min-width: 0; }
    .service-tabs { gap: 12px; flex-wrap: wrap; font-size: 0.85rem; }
    .service-tab { font-size: 0.85rem; padding: 8px 0; }
    .service-category-title { font-size: 0.9rem; margin: 18px 0 10px 0; }
    .service-cards { grid-template-columns: 1fr; gap: 18px; }
    .service-card { border-radius: 10px; box-shadow: 0 2px 8px #b6d0f7; }
    .service-card-img { height: 140px; border-radius: 10px 10px 0 0; }
    .service-card-content { padding: 12px 10px 0 10px; }
    .service-card-title { font-size: 0.85rem; }
    .service-card-desc { font-size: 0.8rem; }
    .service-card-info { font-size: 0.8rem; gap: 10px; }
    .service-card-price { font-size: 0.85rem; }
    .service-card-book { font-size: 0.8rem; padding: 8px 12px; }
}
@media (max-width: 600px) {
    .service-list-container { padding: 8px 0; }
    .service-tabs { gap: 6px; font-size: 0.8rem; }
    .service-category-title { font-size: 0.8rem; }
    .service-card-img { height: 100px; }
    .service-card-content { padding: 8px 4px 0 4px; }
    .service-card-title { font-size: 0.8rem; }
    .service-card-desc { font-size: 0.75rem; }
    .service-card-info { font-size: 0.75rem; }
    .service-card-price { font-size: 0.8rem; }
    .service-card-book { font-size: 0.75rem; padding: 6px 8px; }
}
.theme-service-card {
  max-width: 420px;
  margin: 48px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px #b6d0f722;
  border: 2px solid #b6d0f7;
  padding: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.theme-service-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.booking-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  gap: 12px;
  width: 100%;
}
.theme-back-btn, .theme-continue-btn {
  min-width: 110px;
}
#locationsList {
  width: 100%;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
::-webkit-scrollbar-thumb {
    background: #2563eb;
}
::-webkit-scrollbar-track {
    background: #e3eefd;
}
.theme-location-title {
  width: 100%;
  max-width: 340px;
  margin: 0 auto 12px auto;
  background: linear-gradient(90deg, #2563eb 60%, #e3eefd 100%);
  color: #1741a6;
  border-radius: 10px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 2px 8px #b6d0f744;
  border: none;
}
