/* ======================================================
   ROOT SCOPE
====================================================== */

.mortgage-calc-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mortgage-calc-wrapper * {
  box-sizing: border-box;
}

/* ======================================================
   TABS
====================================================== */

.calc-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.calc-tab-btn {
  flex: 1;
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 28px;
  border: none;
  background: #e8f4f8;
  color: #2c5f7c;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease;
}

.calc-tab-btn:hover {
  background: #d0e9f2;
}

.calc-tab-btn.calc-tab-active {
  background: #3498db;
  color: #ffffff;
}

/* ======================================================
   PANELS (CRITICAL)
====================================================== */

.calc-panel {
  display: none;
}

.calc-panel.active {
  display: block !important;
}

/* Optional: smooth transition */
.calc-panel.active {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ======================================================
   DESCRIPTION
====================================================== */

.calc-description {
  background: #e8f4f8;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

.calc-description p {
  margin: 0;
  color: #2c5f7c;
  font-size: 15px;
  line-height: 1.5;
}

/* ======================================================
   CALCULATOR CONTAINER
====================================================== */

.calc-container {
  background: linear-gradient(135deg, #3498db, #2980b9);
  padding: 32px;
  border-radius: 18px;
  position: relative;
  color: #ffffff;
}

/* ======================================================
   SPLIT LOAN BUTTON
====================================================== */

.btn-split-loan {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ffffff;
  color: #3498db;
  border: none;
  padding: 9px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-split-loan:hover {
  transform: translateY(-2px);
}

/* ======================================================
   LOAN SECTIONS
====================================================== */

#loanSectionsContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 56px;
}

.loan-section {
  background: rgba(255, 255, 255, 0.16);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
}

@supports (backdrop-filter: blur(10px)) {
  .loan-section {
    backdrop-filter: blur(10px);
  }
}

.loan-sections {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ======================================================
   CLOSE SPLIT
====================================================== */

.btn-close-split {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-close-split:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ======================================================
   FORM FIELDS
====================================================== */

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  color: #2c5f7c;
}

/* Checkbox alignment */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

/* Slider */
.time-slider {
  width: 100%;
}

.slider-value {
  display: inline-block;
  margin-left: 8px;
  font-weight: 600;
}

/* ======================================================
   PAYMENT DISPLAY
====================================================== */

.payment-display {
  background: #ffffff;
  border: 2px dashed #cfe6f3;
  padding: 14px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #2c5f7c;
}

/* ======================================================
   BUTTONS
====================================================== */

.calc-button-wrapper {
  text-align: center;
  margin: 26px 0;
}

.btn-calculate {
  background: #ffffff;
  color: #3498db;
  padding: 14px 42px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-calculate:hover {
  transform: translateY(-2px);
}

/* ======================================================
   RESULTS
====================================================== */

.calc-results {
  background: rgba(255, 255, 255, 0.18);
  padding: 22px;
  border-radius: 14px;
  margin-top: 20px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.result-label {
  font-size: 15px;
  font-weight: 600;
}

.result-value {
  font-size: 18px;
  font-weight: 700;
}

/* ======================================================
   CONTACT FORM
====================================================== */

.calc-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.calc-contact-form input,
.contact-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  color: #2C5F7C;
}

.contact-input:focus {
  outline: none;
  border-color: #FFFFFF;
}

.btn-email-results,
.btn-talk-to-us {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
}

.btn-email-results {
  background: #27AE60;
  color: #FFFFFF;
}

.btn-email-results:hover {
  background: #229954;
  transform: translateY(-2px);
}

.btn-talk-to-us {
  background: #FFFFFF;
  color: #3498DB;
  border: 2px solid #FFFFFF;
}

.btn-talk-to-us:hover {
  background: #E8F4F8;
  transform: translateY(-2px);
}

/* ======================================================
   MESSAGE & DISCLAIMER
====================================================== */

.calc-message {
  margin-top: 16px;
  padding: 14px;
  border-radius: 10px;
  text-align: center;
}

.calc-message.success {
  border: 2px solid #27AE60;
  color: #27AE60;
  background: rgba(39, 174, 96, 0.1);
}

.calc-message.error {
  border: 2px solid #E74C3C;
  color: #E74C3C;
  background: rgba(231, 76, 60, 0.1);
}

.calc-disclaimer {
  margin-top: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  font-size: 13px;
}

/* ======================================================
   PANEL SWITCHING
====================================================== */

.calc-panels {
  position: relative;
}

/* ======================================================
   HEADING STYLES
====================================================== */

.calc-container h2 {
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 28px;
}

.calc-container h3 {
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 20px;
}

/* ======================================================
   BORROWING POWER - SUB-TABS
====================================================== */

.bp-sub-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.bp-sub-tab-btn {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.bp-sub-tab-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.bp-sub-tab-btn.bp-sub-tab-active {
  background: rgba(255, 255, 255, 0.95);
  color: #2C5F7C;
}

/* ======================================================
   BORROWING POWER - RESULT BANNER
====================================================== */

.bp-result-banner {
  background: #3498DB;
  padding: 16px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.bp-result-banner p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* ======================================================
   BORROWING POWER - TAB CONTENT
====================================================== */

.bp-tab-content {
  display: none;
  padding-top: 24px;
}

.bp-tab-content.bp-tab-active {
  display: block;
}

/* ======================================================
   BORROWING POWER - INLINE ROW
====================================================== */

.bp-inline-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.bp-half {
  margin-bottom: 0;
}

/* ======================================================
   BORROWING POWER - TOGGLE BUTTONS
====================================================== */

.bp-toggle-buttons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.bp-toggle-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bp-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.bp-toggle-btn.bp-toggle-active {
  background: rgba(255, 255, 255, 0.95);
  color: #3498DB;
  border-color: rgba(255, 255, 255, 0.95);
}

/* ======================================================
   BORROWING POWER - INPUT GROUPS
====================================================== */

.bp-input-group {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.bp-currency-input {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 14px;
  color: #2C5F7C;
  font-weight: 600;
  font-size: 16px;
  pointer-events: none;
}

.bp-currency-input input {
  padding-left: 32px;
  width: 100%;
}

.bp-frequency-select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  color: #2C5F7C;
}

.bp-period-label {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 0 12px;
}

/* ======================================================
   BORROWING POWER - SLIDERS
====================================================== */

.bp-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  outline: none;
  -webkit-appearance: none;
  margin-top: 8px;
}

.bp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  border: 3px solid #3498DB;
}

.bp-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  cursor: pointer;
  border: 3px solid #3498DB;
}

/* ======================================================
   BORROWING POWER - SECTION HEADERS
====================================================== */

.bp-section-header h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin: 24px 0 8px 0;
}

.bp-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0 0 16px 0;
}

/* ======================================================
   BORROWING POWER - ADD INCOME BUTTON
====================================================== */

.btn-add-income {
  background: rgba(52, 152, 219, 0.8);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 16px;
  margin-bottom: 24px;
}

.btn-add-income:hover {
  background: rgba(52, 152, 219, 1);
  transform: translateY(-2px);
}

/* ======================================================
   BORROWING POWER - OTHER INCOME ITEMS
====================================================== */

.bp-other-income-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  position: relative;
}

.btn-remove-income {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(231, 76, 60, 0.8);
  color: #FFFFFF;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove-income:hover {
  background: rgba(231, 76, 60, 1);
  transform: rotate(90deg);
}

/* ======================================================
   BORROWING POWER - NAVIGATION BUTTONS
====================================================== */

.bp-nav-buttons {
  text-align: right;
  margin-top: 32px;
}

.btn-bp-next,
.btn-bp-calculate {
  background: rgba(142, 68, 173, 0.9);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 24px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-bp-next:hover,
.btn-bp-calculate:hover {
  background: rgba(142, 68, 173, 1);
  transform: translateX(4px);
}

/* ======================================================
   BORROWING POWER - RESULT DISPLAY
====================================================== */

.bp-borrowing-result {
  background: rgba(255, 255, 255, 0.2);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 32px;
}

.bp-borrowing-result h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin: 0 0 16px 0;
}

.bp-result-amount {
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ======================================================
   BORROWING POWER - DETAILS SUMMARY
====================================================== */

.bp-details-summary {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  margin-top: 24px;
}

/* ======================================================
   BORROWING POWER - INFO ICON
====================================================== */

.info-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  margin-left: 6px;
  cursor: help;
  font-weight: bold;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 768px) {
  .mortgage-calc-wrapper {
    min-height: 200px;
  }

  .calc-contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc-tabs {
    flex-direction: column;
  }

  .result-row {
    flex-direction: column;
    gap: 4px;
  }
  
  .btn-email-results,
  .btn-talk-to-us {
    width: 100%;
  }
  
  .btn-split-loan {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .bp-inline-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bp-input-group {
    grid-template-columns: 1fr;
  }

  .bp-sub-tabs {
    flex-direction: column;
  }

  .bp-result-amount {
    font-size: 36px;
  }

  .bp-nav-buttons {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .calc-tab-btn {
    min-width: 100%;
  }

  .bp-toggle-buttons {
    flex-direction: column;
  }

  .bp-borrowing-result {
    padding: 20px;
  }
}

/* ======================================================
   BORROWING POWER - ADDITIONAL STYLES
   Add these to your existing mortgage-calculator.css
====================================================== */

/* ======================================================
   HEADER ACTIONS (Print & About buttons)
====================================================== */

.bp-header-actions {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.btn-bp-print,
.btn-bp-about {
  background: rgba(255, 255, 255, 0.95);
  color: #3498DB;
  border: none;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-bp-print:hover,
.btn-bp-about:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ======================================================
   DEFAULT CALCULATIONS INFO
====================================================== */

.bp-default-calc-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.bp-default-calc-info h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
}

.bp-default-calc-info > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.bp-calc-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ======================================================
   REPAYMENT DISPLAY
====================================================== */

.bp-repayment-display {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.bp-repayment-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
}

.bp-repayment-amount {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.bp-repayment-details {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.bp-rate-badge {
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

/* ======================================================
   FREQUENCY TOGGLE
====================================================== */

.bp-frequency-toggle {
  margin: 20px 0;
}

.bp-frequency-toggle label {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
}

.bp-freq-buttons {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
  border-radius: 8px;
}

.bp-freq-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.bp-freq-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.bp-freq-btn.bp-freq-active {
  background: rgba(255, 255, 255, 0.95);
  color: #3498DB;
}

/* ======================================================
   MODAL STYLES
====================================================== */

.bp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.bp-modal-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 800px;
  max-height: 85vh;
  width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bp-modal-header {
  padding: 24px 28px;
  border-bottom: 2px solid #E8F4F8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bp-modal-header h2 {
  margin: 0;
  color: #2C5F7C;
  font-size: 24px;
}

.bp-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.bp-modal-close:hover {
  background: #F5F5F5;
  color: #333;
}

.bp-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
  color: #2C5F7C;
}

.bp-modal-body h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.bp-modal-body h4 {
  color: #3498DB;
  font-size: 16px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.bp-modal-body p {
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.bp-modal-footer {
  padding: 20px 28px;
  border-top: 2px solid #E8F4F8;
  text-align: right;
}

.btn-bp-close-modal {
  background: #8E44AD;
  color: #FFFFFF;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-bp-close-modal:hover {
  background: #732D91;
  transform: translateY(-2px);
}

/* ======================================================
   PRINT STYLES
====================================================== */

@media print {
  /* Hide everything except borrowing power */
  body * {
    visibility: hidden;
  }

  .borrowing-power,
  .borrowing-power * {
    visibility: visible;
  }

  .borrowing-power {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

  /* Hide UI elements */
  .bp-header-actions,
  .bp-sub-tabs,
  .btn-bp-next,
  .btn-bp-calculate,
  .btn-calculate,
  .btn-add-income,
  .btn-remove-income,
  .bp-slider,
  .calc-tabs,
  .bp-freq-buttons {
    display: none !important;
  }

  /* Show all tabs for print */
  .bp-tab-content {
    display: block !important;
    page-break-after: always;
  }

  /* Adjust colors for print */
  .calc-container {
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #3498DB;
  }

  .calc-container h2,
  .calc-container h3,
  .calc-container h4,
  .calc-container label,
  .bp-repayment-label,
  .result-label {
    color: #000000;
  }

  .bp-result-amount,
  .bp-repayment-amount,
  .result-value {
    color: #3498DB;
  }

  /* Make forms readable */
  input,
  select {
    border: 1px solid #CCC;
    background: #F9F9F9;
  }

  .bp-result-banner {
    background: #E8F4F8;
    color: #2C5F7C;
  }

  .bp-result-banner p {
    color: #2C5F7C;
  }
}

/* ======================================================
   RESPONSIVE ADJUSTMENTS
====================================================== */

@media (max-width: 768px) {
  .bp-header-actions {
    position: static;
    margin-bottom: 16px;
    justify-content: center;
  }

  .bp-modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .bp-modal-header,
  .bp-modal-body,
  .bp-modal-footer {
    padding: 20px;
  }

  .bp-repayment-amount {
    font-size: 28px;
  }

  .bp-freq-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .bp-header-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-bp-print,
  .btn-bp-about {
    width: 100%;
  }
}
