.bottom-curv {
  border-bottom-left-radius: 55px;
  border-bottom-right-radius: 55px;
}

.top-curv{
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
}

.square-curv{
  border-radius: 20px;
}

/* =======================
   THEME COLORS (UPDATED)
   ======================= */
:root{
  --blue : #F4B740;        /* primary button yellow */
  --dark-blue : #E09B1E;   /* darker yellow/orange */
  --light-blue : #F7F2D6;  /* light cream background */
}

/* =======================
   TEXT COLORS
   ======================= */
.text-blue {
  color: #E9A23B; /* heading orange */
}

.text-dark-blue {
  color: #333333; /* dark readable text */
}

/* =======================
   BACKGROUNDS
   ======================= */
.bg-blue {
  background-color: #F4B740; /* button background */
}

.bg-dark-blue {
  background-color: #E09B1E; /* button footer strip */
}

.bg-light-blue{
  background-color: #F7F2D6; /* top background */
}

/* =======================
   BUTTONS
   ======================= */
.btn-blue {
  background-color: #F4B740;
  color: #ffffff;
}

.btn-dark-blue {
  background-color: #E09B1E;
  color: #ffffff;
}

.btn-blue:hover {
  background-color: #E09B1E;
}

.btn-dark-blue:hover {
  background-color: #F4B740;
}

/* =======================
   FONT SIZES (UNCHANGED)
   ======================= */
.font-21{
  font-size: 21px;
}

.font-35{
  font-size: 35px;
}

.font-30{
  font-size: 30px;
}

.font-15{
  font-size: 15px;
}

.font-17{
  font-size: 17px;
}

.font-18{
  font-size: 18px;
}

/* =======================
   INFO BOXES (SOFTENED)
   ======================= */
.bg-box-1{
  background-color: #F4B740;
  color: #fff;
}

.bg-box-2{
  background-color: #FFCB66;
  color: #fff;
}

.bg-box-3{
  background-color: #E9A23B;
  color: #fff;
}

.bg-box-4{
  background-color: #D88C1A;
  color: #fff;
}

/* =======================
   CARDS
   ======================= */
.custom-card{
  background: #FFF7DD;
  border-radius: 10px;
  border: 1px solid #F4B740 !important;
}

.custom-card-2{
  background: #FFF1CC;
  border-radius: 10px;
  border: 1px solid #F4B740 !important;
}

.custom-card-3{
  background: #FFE6B3;
  border-radius: 10px;
  border: 1px solid #E9A23B !important;
}

/* =======================
   FONT WEIGHT
   ======================= */
.font-bold{
  font-weight: 600;
}

/* =======================
   SHADOW
   ======================= */
.shadow-top {
  box-shadow: 0 -14px 25px -18px rgba(0, 0, 0, 0.25);
}

/* =======================
   MODAL
   ======================= */
.modal-dialog{
  margin: 0px;
}

/* =======================
   ERROR UI (UNCHANGED)
   ======================= */
.submit-error {
  display: block;
  border: solid 1px #e85347;
  background: #fce9e7;
  padding: 13px;
  border-radius: 4px;
  margin: 0 auto;
}

.submit-error li {
  padding: 4px 0 4px 15px;
  color: #e85347;
  position: relative;
  text-align: left;
}

.submit-error li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e85347;
  position: absolute;
  top: 10px;
  left: 0;
}

/* =======================
   LINKS
   ======================= */
.a{
  text-decoration: none;
}

/* =======================
   SCROLLABLE
   ======================= */
.scrollable-container {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #E5E5E5;
  padding: 10px;
}

.btn-primary{
    background: #F4B740 !important;      /* warm yellow */
    border-color: #E09B1E !important;    /* darker yellow/orange */
    color: #ffffff !important;
}
.btn-primary:hover{
    background: #E09B1E !important;   /* deeper warm orange */
    border-color: #C98212 !important; /* slightly darker edge */
    color: #ffffff !important;
}

.nav-tabs.lined .nav-item .nav-link.active {
    color: #F4B740;
    background: transparent;
    border-bottom-color: #F4B740 !important;
}
