/* =========================================================
   MINIMAL OVERRIDES ONLY
   - Keep Medallia defaults
   - Add white card
   - Pill buttons
   ========================================================= */
 
/* =========================
   GLOBAL FIXES (ALL DEVICES)
   ========================= */

header .layout_layoutContainer {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.layout_mainHeader {
  display: flex !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Logo container */
.layout_mainHeaderLeft {
  flex: 1 1 auto;
  width: 100% !important;
  padding: 0;
  margin: 0;
}

/* Logo */
#pageLogo {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Desktop language selector */
.layout_mainHeaderRight {
  position: absolute;
  top: 35px;
  right: 5px;
  z-index: 10;
width: 300px;
}

/* Language dropdown */
.dropdown_dropdownSelector {
  border: 0px solid !important;
}



/* =========================
   MOBILE OVERRIDES
   ========================= */

@media screen and (max-width: 768px) {

  /* Stack header for mobile */
  .layout_mainHeader {
    flex-direction: column;
    align-items: stretch;
  }

  /* Logo scales naturally */
  .layout_mainHeaderLeft {
    text-align: center;
  }

  #pageLogo {
    max-width: 90vw !important;
    margin: 0 auto;
  }

  /* ✅ FIX: Language selector becomes fluid */
  .layout_mainHeaderRight {
    position: relative !important;  /* CRITICAL FIX */
    top: auto;
    right: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 6px;
  }

  /* Scale language selector box */
  .dropdown_dropdownSelector {
  
 width: auto;
  max-width: 80vw;
  padding: 2px 8px;
  font-size: 14px;
  line-height: 1.2 !important;
  min-height: 36px;
  box-sizing: border-box;
  }


  /* Remove hidden internal spacing */
  .dropdown_dropdownSelector span,
  .dropdown_dropdownSelector label {
    padding: 0 !important;
    line-height: 1.2 !important;
  }


  /* Icon scaling */
  .dropdown_dropdownIcon {
    font-size: 14px;
  }

  /* Prevent overflow issues */
  #languageSelector {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* =========================
   SMALL DEVICES (≤ 480px)
   ========================= */

@media screen and (max-width: 480px) {

  .dropdown_dropdownSelector {
    max-width: 90vw;
    font-size: 13px;
    min-height: 34px;

  }

  #pageLogo {
    max-width: 95vw !important;
  }
}
 
 
/* ..................................*/
 
/* --- Station finder block under the native Site ID question --- */
.shellStationFinderHelp{
  margin: 8px 0 0 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  color: #6b7280 !important;
}
 
.shellStationFinderLink{
  margin-top: 8px !important;
  display: inline-block !important;
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  font: inherit !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1d4ed8 !important;   /* blue link look */
  text-decoration: underline !important;
  cursor: pointer !important;
}
 
.shellStationFinderMapWrap{
  display: none;
  margin-top: 12px !important;
  border: 1px solid rgba(17,24,39,0.12) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
}
 
.shellStationFinderIframe{
  width: 100% !important;
  height: 520px !important;
  border: 0 !important;
  display: block !important;
}
 
@media (max-width: 720px){
  .shellStationFinderIframe{ height: 420px !important; }
}
 
/* --- Receipt help (inline clickable text) --- */
.shellReceiptHelp{
  margin: 8px 0 0 0 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  color: #6b7280 !important;
}
 
.shellReceiptHelp a{
  font-weight: 600 !important;
  color: #1d4ed8 !important; /* blue link */
  text-decoration: underline !important;
  cursor: pointer !important;
}
 
.shellReceiptImageWrap{
  display: none;
  margin-top: 12px !important;
  border: 1px solid rgba(17,24,39,0.12) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}
 
.shellReceiptImage{
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
 
.progressbar_progressBar{
height: 20px;
}
 
.progressbar_progressBarIndicator{
height: 20px;
}

.progressbar_progressBarIndicator div {
  color: #213144 !important;
}

.layout_text {
    padding: 10px 0;
}
 
input[type="radio"].cellOption_input {
  accent-color: #000;
}
 
.indicatorCircle_label_isSelected{
color : #000000;
}
 
.anchor {
    font-size: 13.5px;
}
.table_table {
width: 101%
}

 
/* Selected state: change the highlight/background from blue to Shell yellow */
.cellOption_starScale .indicatorStar_star_isSelected {
  background-color: #FFC600 !important;
}
 