.header-umum {
  align-items: center;
  height: 65px;
  border-bottom: 1px solid lightgrey;
  user-select: none;
  width: 100%;
  background: url(/assets/img/bg-pattern-islamic-transparent2.svg) center center;
  background-size: 242px;
  background-repeat: repeat;
  background-color: rgba(232, 232, 232, 0.87);
}

.workspace-center {
    position: relative;
}

.admin-top-promo-bar {
  height: 35px;
  background-color: #f4f6f9 !important;
  color: #2c3e50;
  border-bottom: none;
  font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  z-index: 1040;
  width: 100%;
  overflow: hidden;
  user-select: none;
  transition: height 0.2s ease-in-out;
}

.admin-top-promo-bar.collapsed {
  height: 0px !important;
}

.collapse-toggle-container {
  position: absolute;
  top: 2px;
  right: 10px;
  z-index: 1041;
  transition: top 0.2s ease-in-out;
    background-color: #f4f6f9;
    padding: 0;
    height: 30px;
}

.admin-top-promo-bar.collapsed + .collapse-toggle-container {
  top: 2px;
}

#collapse-toggle-btn img {
  transition: transform 0.2s ease-in-out;
}

#collapse-toggle-btn.rotated img {
  transform: rotate(180deg);
}

.red-white-stripe {
  display: block;
  width: 100%;
  height: fit-content;
  z-index: 1040;
}

.red-white-stripe .red {
  background-color: #ff0000;
  width: 100%;
  height: 1px;
}

.red-white-stripe .white {
  background-color: #ffffff;
  width: 100%;
  height: 1px;
}

.promo-center {
  font-size: 12px;
  color: #2c3e50;
  font-weight: 500;
}

.promo-desc {
  color: #4a5568;
}

.promo-highlight-text {
  /* color: #dc3545; */
}

/* Promo text: full version on desktop/laptop, short version on mobile,
   tiny version on very small phones (<= 320px) */
.promo-text-short,
.promo-text-tiny {
  display: none;
}

.btn-cta {
  background-color: #f59e0b;
  color: #0f172a;
  border: none;
  font-size: 9.5px !important;
  padding: 0 12px;
  border-radius: 9999px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background-color: #d97706;
  color: #ffffff;
  transform: translateY(-0.5px);
}

.btn-cta:active {
  transform: translateY(0.5px);
}

.navbar-right .btn-top-control {
  margin-left: 10px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar-right .btn-top-control:hover {
  opacity: 0.8;
}

.navbar-right .btn-top-control i {
  font-size: 14px;
}

.btn-expand-promo-bar {
  position: absolute;
  top: 2px;
  right: 15px;
  z-index: 1050;
  background-color: #f4f6f9;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 1px 8px;
  font-size: 10px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-expand-promo-bar:hover {
  background-color: #e2e8f0;
}

@media (max-width: 768px) {
  .admin-top-promo-bar {
    height: auto;
    min-height: 38px;
    padding: 6px 0;
  }
  
  .admin-top-promo-bar.collapsed {
    height: 0px !important;
    min-height: 0 !important;
    padding: 0;
  }

  .promo-center {
    font-size: 11px;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    gap: 0;
    white-space: nowrap;
  }

  .promo-highlight-text {
    width: auto;
    margin-right: 8px !important;
    margin-bottom: 0;
  }

  .promo-text-full {
    display: none;
  }

  .promo-text-short {
    display: inline;
  }
}

@media (max-width: 320px) {
  .promo-text-full,
  .promo-text-short {
    display: none;
  }

  .promo-text-tiny {
    display: inline;
  }
}

.promo-desc, .promo-highlight-text {
    font-size: 10px;
}

/* ==================== DARK MODE: top promo bar & masthead ==================== */
[data-theme="dark"] .admin-top-promo-bar {
  background-color: #1f2933 !important;
  color: #cfd8e3;
}

[data-theme="dark"] .promo-center,
[data-theme="dark"] .promo-desc,
[data-theme="dark"] .promo-highlight-text {
  color: #cfd8e3;
}

[data-theme="dark"] .collapse-toggle-container {
  background-color: #1f2933;
}

/* The collapse chevron (arrow-downn.png) is solid black, so it disappears on
   the dark bar — invert it to stay visible. The sun/moon, power and book icons
   are full-colour and are intentionally left untouched. */
[data-theme="dark"] #collapse-toggle-btn img {
  filter: invert(1);
}

[data-theme="dark"] .header-umum {
  background-color: var(--header-bg);
  border-bottom-color: #3c4043;
}

/* Swap the dark-text brand logo for the white variant on the dark header */
[data-theme="dark"] .logoexamio {
  content: url('/assets/logo/logo-examio-light.png');
}