/* ===============================
   CURRENCY SECTION WRAPPER
   =============================== */

.currency-section{
  display:flex;
  justify-content:center;
  margin:18px 0 28px;
  padding:0 15px;
}


/* ===============================
   CURRENCY CARD
   =============================== */

.currency-card{
  position:relative;
  overflow:hidden;

  text-align:center;
  padding:22px 26px;
  border-radius:16px;

  background:#ffffff;
  border:1px solid #e3e8ef;
  box-shadow:0 10px 26px rgba(0,0,0,.05);

  max-width:700px;
  width:100%;
}


/* ===============================
   THAILAND PALM TEXTURE (TOP ONLY)
   =============================== */

.currency-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:120px;

  background-image:url("data:image/svg+xml,%3Csvg width='320' height='200' viewBox='0 0 320 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23007acc' fill-opacity='0.18'%3E%3Cpath d='M160 30c-14 22-18 34-16 48 18-14 36-16 52-12-16-16-24-26-36-36z'/%3E%3Cpath d='M140 80c26-8 48-5 70 12-12-18-30-26-56-34z'/%3E%3Cpath d='M185 90c-20-7-42-6-62 4 16 12 36 15 60 12z'/%3E%3C/g%3E%3C/svg%3E");

  background-repeat:repeat-x;
  background-size:260px;
  opacity:0.12;
  pointer-events:none;
  z-index:0;
}

/* Inhalt über Textur */
.currency-card > *{
  position:relative;
  z-index:2;
}


/* ===============================
   LABEL
   =============================== */

.currency-label{
  display:inline-block;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;

  color:#007acc;
  background:rgba(0,122,204,.08);
  border:1px solid rgba(0,122,204,.18);
  border-radius:999px;
  padding:3px 9px;
  margin-bottom:10px;
}


/* ===============================
   HEADLINE
   =============================== */

.currency-headline{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  margin-bottom:8px;
}

.currency-flag{ font-size:20px; }

.currency-title{
  font-size:17px;
  font-weight:600;
  color:#2d3e50;
}

.currency-subtitle{
  font-size:12px;
  color:#6b7a88;
}


/* ===============================
   RATE
   =============================== */

.currency-rate-row{
  display:flex;
  justify-content:center;
  margin:6px 0 4px;
}

.currency-rate{
  font-size:30px;
  font-weight:700;
  color:#007acc;
}


/* ===============================
   TIME
   =============================== */

.currency-time{
  font-size:12px;
  color:#7b8794;
  margin-top:2px;
}


/* ===============================
   CALCULATOR
   =============================== */

.currency-calc{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid #eef2f6;
  text-align:left;
}

.currency-calc-title{
  font-size:13px;
  font-weight:700;
  color:#2d3e50;
  margin-bottom:8px;
}

.currency-calc-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.currency-calc-label{
  min-width:44px;
  font-size:12px;
  font-weight:700;
  color:#6b7a88;
}

.currency-calc-input{
  flex:1;
  height:40px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid #dfe7ef;
  background:#fbfdff;
  font-size:15px;
  color:#2d3e50;
  outline:none;
}

.currency-calc-input:focus{
  border-color:rgba(0,122,204,.45);
  box-shadow:0 0 0 3px rgba(0,122,204,.08);
}

.currency-calc-result{
  margin-top:8px;
  display:flex;
  justify-content:space-between;
}

.currency-calc-result-label{
  font-size:12px;
  color:#6b7a88;
  font-weight:700;
}

.currency-calc-result-value{
  font-size:18px;
  font-weight:800;
  color:#2d3e50;
}

.currency-calc-hint{
  margin-top:6px;
  font-size:11px;
  color:#7b8794;
}


/* ===============================
   MOBILE
   =============================== */

@media (max-width:600px){

  .currency-card{
    padding:18px 16px;
  }

  .currency-rate{
    font-size:26px;
  }

  .currency-title{
    font-size:16px;
  }
}

/* ===============================
   RATE BOX
   =============================== */

/* ===============================
   RATE LIST – BULLETS FIX + STYLE
   =============================== */

.rate-list{
  list-style:none !important;
  padding:0 !important;
  margin:18px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* entfernt Bootstrap-Bullets sicher */
.rate-list li{
  list-style:none !important;
  margin:0;
  padding:12px 16px;
  border-radius:10px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:#f4f7fb;
  box-shadow:0 2px 5px rgba(0,0,0,.03);

  font-size:15px;
  color:#3c4a57;
}

/* extra Sicherheit gegen Pseudo-Bullets */
.rate-list li::marker{ content:""; }
.rate-list li::before{ content:none !important; }

/* links Text */
.rate-list li span:first-child{
  font-weight:500;
}

/* rechts Zahlen */
.rate-list li span:last-child{
  font-weight:700;
  color:#007acc;
}

/* Hover Desktop */
@media (hover:hover){
  .rate-list li:hover{
    background:#edf3f9;
    transform:translateY(-1px);
  }
}

/* Mobile */
@media (max-width:600px){
  .rate-list li{
    padding:11px 14px;
    font-size:14px;
  }
}

/* ===============================
   PATTAYA PREISE – FINAL TABLE STYLE
   =============================== */

.table-responsive{
  margin:30px 0;
}

/* Tabelle */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px; /* Abstand zwischen Karten */
}

/* ===============================
   TABLE HEADER – KLAR ERKENNBAR
   =============================== */

.table thead tr{
  background:#e9f1f8;              /* helles Travel-Blau */
  box-shadow:0 2px 4px rgba(0,0,0,.04);
}

.table th{
  font-size:14px;
  font-weight:700;
  color:#1f3a52;
  padding:12px 16px;
  border:none;
  letter-spacing:.02em;
}

/* linke Kopfzelle */
.table th:first-child{
  border-radius:10px 0 0 10px;
  text-align:left;
}

/* rechte Kopfzelle */
.table th:last-child{
  border-radius:0 10px 10px 0;
  text-align:right;
}

/* ===============================
   BODY – Card Rows
   =============================== */

.table tbody tr{
  background:#f4f7fb;
  box-shadow:0 2px 6px rgba(0,0,0,.03);
  transition:.15s ease;
}

.table tbody tr:hover{
  background:#edf3f9;
  transform:translateY(-1px);
}

/* Zellen */
.table td{
  padding:13px 16px;
  border:none;
  font-size:15px;
  color:#3c4a57;
  vertical-align:middle;
}

/* linke Zelle */
.table tbody td:first-child{
  border-radius:10px 0 0 10px;
  font-weight:500;
  text-align:left;
}

/* rechte Zelle (Preise) */
.table tbody td:last-child{
  border-radius:0 10px 10px 0;
  text-align:right;           /* PREISE RECHTS */
  font-weight:700;
  color:#007acc;
  white-space:nowrap;         /* verhindert Umbruch bei Zahlen */
}

/* ===============================
   MOBILE
   =============================== */

@media(max-width:600px){

  .table{
    border-spacing:0 8px;
  }

  .table td{
    padding:11px 12px;
    font-size:14px;
  }

  .table th{
    font-size:13px;
    padding:9px 12px;
  }
}