/* ===== RESET DASAR ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffe6f0;
}

/* ===== CONTAINER GLOBAL ===== */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 20px #ffb6c1;
}

/* ===== JUDUL HALAMAN ===== */
h2 {
  text-align: center;
  color: #d63384;
  margin-bottom: 20px;
}

/* ===== FORM ===== */
input, select {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ffb6c1;
  border-radius: 10px;
}

button {
  width: 100%;
  background-color: #ff66a3;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background-color: #ff3399;
}

a {
  text-decoration: none;
  color: #d63384;
}

/* ==== NAVBAR ==== */
nav {
    background-color: #b40f62;
    padding: 14px 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: white;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
    font-weight: bold;
    margin-left: 20px;
}

.nav-center {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-center a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.nav-center a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    font-weight: bold;
}

/* Tombol Keluar Putih */
.nav-right .logout {
    background: white;
    color: #b40f62;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-right .logout:hover {
    background: #ffe6ec;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }
}
/* ==== CHAT PAGE ==== */
.chat-container {
    max-width: 700px; /* sama kaya booking */
    margin: 40px auto;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-form input[type="text"] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.chat-form button {
    background-color: #b40f62ff; /* warna navbar */
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.chat-form button:hover {
    background-color: #8e0d50;
}

/* ===== PROMO ===== */
.promo-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.promo-card {
  background-color: #ffe6f0;
  border: 2px dashed #ff69b4;
  border-radius: 15px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(255, 105, 180, 0.2);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: scale(1.05);
}

.section-title {
  text-align: center;
  color: #d63384;
  margin-bottom: 10px;
}

/* ===== TREATMENT ===== */
.treatment-box {
  background-color: #fff0f5;
  border: 2px solid #ffb6c1;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(255, 182, 193, 0.3);
  transition: transform 0.3s ease;
}

.treatment-box:hover {
  transform: scale(1.02);
}

.treatment-box h3 {
  color: #d63384;
  margin-top: 0;
}

.treatment-box p {
  margin: 8px 0;
  color: #333;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
}
/* ==== BOX / CONTAINER GLOBAL ==== */
.container {
    max-width: 90%;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Judul di dalam box */
.container h2,
.container h3 {
    color: #b40f62;
    margin-top: 0;
}

/* ==== TOMBOL GLOBAL ==== */
button,
input[type="submit"],
input[type="button"],
.btn {
    background-color: #b40f62;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background-color: #8f0c4e;
}

/* ==== TABEL ==== */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #f8c6dc;
    color: #b40f62;
    padding: 12px;
    text-align: left;
}

td {
    padding: 10px;
    border-bottom: 1px solid #f1c6d3;
}

tr:hover {
    background-color: #fde2eb;
}

/* ==== FORM INPUT ==== */
input[type="text"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #f1c6d3;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #b40f62;
    box-shadow: 0 0 5px rgba(180, 15, 98, 0.3);
}
.container form label {
  display: block;
  margin-left: 20px; /* Atur jarak indentasi */
}
/* ===== RESET DASAR ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffe6f0;
}

/* ===== CONTAINER GLOBAL ===== */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 20px #ffb6c1;
}

/* ===== JUDUL HALAMAN ===== */
h2 {
  text-align: center;
  color: #d63384;
  margin-bottom: 20px;
}

/* ===== TOMBOL GLOBAL ===== */
button,
input[type="submit"],
input[type="button"],
.btn {
    background-color: #b40f62;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
    background-color: #8f0c4e;
}

/* ===== PARAGRAPH ===== */
p {
  margin-bottom: 10px;
  line-height: 1.4;
}

/* ===== LINK ===== */
a {
  color: #b40f62;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== TABEL, FORM dll kalau perlu bisa ditambahkan lagi */
