@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bep-calculator-wrapper {
  font-family: "Manrope", sans-serif !important;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.bep-calculator-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 460px;
  max-height: 750px;
}

.bep-summary-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 460px;
  max-height: 750px;
  height: fit-content;
}

.bep-calculator-title {
  font-family: "Manrope", sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.bep-input-group {
  margin-bottom: 20px;
}

.bep-input-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px !important;
}

.bep-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.bep-input-field {
  width: 100%;
  padding: 12px 12px !important;
  border: 1px solid #e1e5e9 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  background: #e8f4fd !important;
  transition: border-color 0.2s ease;
}

.bep-input-field:focus {
  outline: none;
  border-color: #0044bb !important;
}

.bep-input-description {
  font-family: "Manrope", sans-serif !important;
  font-size: 14px !important;
  color: #6b7280 !important;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.bep-logo-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.bep-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-img {
  width: 150px;
  height: 33px;
}

.bep-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bep-summary-title {
  font-family: "Manrope", sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #1a1a1a;
  margin: 0;
}

.bep-summary-content {
  transition: all 0.3s ease;
  overflow: hidden;
}

.bep-summary-content.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
}

.bep-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #ccc;
}

.bep-summary-header-row {
  background: #f8f9fa;
  margin: 0px -5px 10px;
  padding: 12px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #374151;
  border: none;
}

.bep-summary-name {
  font-size: 14px;
  color: #374151;
}

.bep-summary-total {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}

.bep-result-container {
  margin: 40px 0px 15px;
}

.bep-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: #e8f4fd;
  border-radius: 8px;
  border: 1px solid #0044bb;
}

.bep-result-label {
  font-size: 16px;
  font-weight: 700;
  color: #0044bb;
}

.bep-result-value {
  font-size: 16px;
  font-weight: 700;
  color: #0044bb;
}

@media (max-width: 768px) {
  .bep-calculator-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .bep-calculator-card,
  .bep-summary-card {
    width: 100%;
    max-width: 460px;
    padding: 20px;
  }

  .bep-calculator-container {
    padding: 10px;
  }
}


.danger {
  color: red;
}

.bep-result-row.danger {
  border: 1px solid red;
}
