/* =========================
   TOP ROW CONTAINER
========================= */
.refresh-button-container {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin-bottom: 10px !important;
  box-sizing: border-box !important;
}

/* =========================
   TITLE BOX = 70%
========================= */
.popup-title-box {
  flex: 7 !important;
  width: 0 !important;
  height: 48px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 10px !important;
  box-sizing: border-box !important;

  text-align: center !important;
  font-size: 18px !important;
  font-weight: bold !important;
  color: #e6e6e6 !important;

  background: #6a0dad !important;
  border-radius: 8px !important;
  border: 1px solid #ffc107 !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12) !important;
}

/* =========================
   BUTTON AREA = 30%
========================= */
.refresh-button-div {
  flex: 3 !important;
  width: 0 !important;
  height: 48px !important;

  display: flex !important;
}

/* =========================
   BUTTON FULL WIDTH
========================= */
.refresh-btn-new {
  width: 100% !important;
  height: 48px !important;

  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: stretch !important;

  border: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;

  background: none !important;
  cursor: pointer !important;

  transition: transform 0.2s ease !important;
}

/* =========================
   ICON SIDE
========================= */
.refresh-icon {
  width: 42px !important;
  min-width: 42px !important;
  height: 48px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #e76f2c !important;
  color: #ffffff !important;

  font-size: 16px !important;
  font-weight: bold !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* =========================
   TEXT SIDE
========================= */
.refresh-text {
  flex: 1 !important;
  height: 48px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #5a5a63 !important;
  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;

  padding: 0 8px !important;
  margin: 0 !important;
}

/* =========================
   CLICK EFFECT
========================= */
.refresh-btn-new:active {
  transform: scale(0.97) !important;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .refresh-button-container {
    gap: 8px !important;
  }

  .popup-title-box,
  .refresh-button-div,
  .refresh-btn-new,
  .refresh-text,
  .refresh-icon {
    height: 42px !important;
  }

  .popup-title-box {
    font-size: 15px !important;
    padding: 0 6px !important;
  }

  .refresh-icon {
    width: 36px !important;
    min-width: 36px !important;
    font-size: 14px !important;
  }

  .refresh-text {
    font-size: 12px !important;
    padding: 0 4px !important;
  }
}
