/*------COMMON STYLE-----*/
* { margin: 0; padding: 0; box-sizing: border-box; }


body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 200;
  background: #fff;
  min-height: 100vh;
}


.grid {
  position: relative;
  width: 90%;
  margin: 50px auto 0 auto;
  opacity: 0;
  flex: 1 0 auto;
  min-height: calc(100vh - 200px); 
  transition: opacity 0.3s ease-in;
}

.grid.loaded {
  opacity: 1;
}

#header-placeholder {
  flex-shrink: 0;
}

#footer-placeholder {
  flex-shrink: 0;
  margin-top: auto;
}

.card {
  position: absolute;
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  margin: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border-radius: 45px;
  background: rgba(244,244,244,0.5);
  transition: background 0.3s ease;
  z-index: -1;
}

.card:hover::before {
  background: rgba(255,255,255,0.6);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.mode-dropdown { text-align: center; }

.dropdown-btn {
  background: rgba(255,255,255,0.9);
  color: #1d1d1f;
  padding: 14px 32px;
  border: 2px solid rgba(220,220,235,0.5);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-btn:hover {
  background: #fff;
  border-color: rgba(200,200,235,0.7);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    border-radius: 22px;
    border: 4px solid rgba(220,220,235,0.45);
    pointer-events: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    text-align: center;
    min-width: 0;
    z-index: 2000;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
}

.dropdown-content a {
  color: #1d1d1f;
  padding: 15px 25px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid rgba(220,220,235,0.3);
  cursor: pointer;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: rgba(245,245,255,0.85); padding-left: 35px; }

.title .main-title {
    font-size: 18px;
    font-weight: 300;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 15px;
}

.title .sub-title {
    font-size: 16px;
    color: #ffffff;
    background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
    padding: 10px 16px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: fit-content;   
    display: block;        
    margin-left: auto;     
    margin-right: auto;    
    text-align: center;    
}




/* ACCORDION */

.accordion-header {
    width: 100%;
    cursor: pointer;
    background: #eee;
    border: none;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 200;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f0f0f5;
}

.accordion-icon {
    float: right;
    font-size: 18px;
    font-weight: 100;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none; 
    overflow: hidden;
    background: transparent;
    border-radius: 15px;
    margin-top: 10px;
    padding: 0 5px;
}

.accordion-content p {
    color: #000000;
}

.customHyperlink {
    color: #007aff;
    text-decoration: underline;
}




.search-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}

.doughnut-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  border-radius: 90px 90px 20px 20px;
  width: 120px;
  box-sizing: border-box;
}

.doughnut-label {
  margin-top: 8px;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}


#question {
  width: 100%;
  min-height: 200px;
  font-size: 17px;
  border-radius: 20px;
  padding: 20px 70px 20px 20px;
  box-sizing: border-box;
  border: 3px solid rgb(144, 166, 250);
  overflow-y: auto;
  overflow: hidden;
  box-shadow: 0 -1px 41px rgba(68, 77, 212, 0.1);
}

#progress-container {
  position: absolute;
  width: 100%;
  background: yellow;
  border: 4px solid #000000;
  margin-bottom: 20px;
  order: 2;
}

#progress-container[style*="display: flex"] {
  display: flex !important;
}

.progress-wrapper {
  width: 100%;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 40px;
  background: linear-gradient(134deg, rgb(255, 132, 132), rgb(255, 112, 253));
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  width: 0%;
  color: #ffffff;
  transition: width 0.1s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
}


@keyframes dots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px; 
  padding: 10px;
  justify-content: center;
  align-items: center;
  align-content: center;
}


.reset-container {
  display: none;
  margin-top: 0px;
  margin-bottom: 0px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-container {
  order: 1;
  margin-top: 0px;
  margin-bottom: 0px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: yellow;
  border: 4px solid #000000;
}

.card.mainSection {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customButton {
  flex: 0 0 auto;
  width: auto;
  min-width: 50px;
  max-width: 80px;
  height: 30px;
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  margin: 5px;
  text-align: center;
  cursor: pointer;
  word-break: normal;
  white-space: nowrap;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  transition: background 0.3s ease;
  box-sizing: border-box;
  transform: translateZ(0);
}

.customButton a {
  display: block;
  width: 100%;
  min-height: 70px;
  text-decoration: none;
}

.customButton:hover {
  font-size: 17px;
}

.customButton:disabled {
  background: #f9069d;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  cursor: not-allowed;
  transition: all 0.2s ease;
}


#searchAnotherButton {
  font-size: 18px;
  padding: 8px 16px;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
}

#searchAnotherButton:hover {
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.customNumber {
  display: inline-block;
  font-size: 30px;
  color: #ffffff;
  padding: 1px 12px 1px 12px;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  border-radius: 50px;
  margin-right: 3px;
}

.history-item {
  margin-bottom: 0px;
  margin-top: 0px;
  padding-bottom: 20px;
  padding: 0px;
  border-radius: 20px;
}

.item-header {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 1px 5px 10px;
  background: transparent;
}


.item-answer {
  order: 3;
  counter-reset: list-counter;
  background: yellow;
  border: 4px solid #000000;
}

.item-answer br + text {
  display: block;
}

.item-answer::before {
  counter-increment: list-counter;
}

.list-number {
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  padding: 0px 3px 0px 3px;
  margin-right: 5px;
  color: #ffffff;
  border: 0px solid #ffffff;
  border-radius: 50px;
  line-height: 1.3;
}

.followup-button,
.resetButtonDynamic {
  width: auto !important;
  min-width: 50px !important;
  max-width: 200px !important;
  flex: 0 0 auto !important;
  font-size: 16px;
  font-weight: 400;
  padding: 5px;
  margin: 0 !important;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.followup-button:hover,
.resetButtonDynamic:hover {
  transform: scale(1.05);
}


#result {
  display: none;
  width: 100%;
  position: absolute; 
  font-size: 16px;
  color: #000000;
  margin-top: 0px;
  border: 0px solid #ffffff;
}

.placeholder-text {
  font-size: 30px;
  color: #a4a3a3;
  text-align: center;
  margin-top: 0px;
  background: transparent;
}


#result.thinking,
.placeholder-text {
  font-size: 20px;
  color: #a4a3a3;
  text-align: center;
  font-style: normal;
  border-radius: 20px;
  background: transparent;
}

.thinking-dots {
  display: inline-block;
  width: 30px;
  text-align: left;
}

.thinking-dots.animate::after {
  content: '...';
  animation: thinking 1.5s infinite;
}

.thinking-dots.stopped::after {
  content: '...';
  animation: none;
}

@keyframes thinking {
  0% { content: '...'; }
  25% { content: '   '; }
  50% { content: '.  '; }
  75% { content: '.. '; }
  100% { content: '...'; }
}


input[type="text"] {
  width: 100%;
  font-size: 14px;
  padding: 15px 15px 15px 15px;
  margin-bottom: 0.5rem;
  border: 0px solid #ffffff;
  border-radius: 10px;
}

.input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.input-wrapper input {
  width: 100%;
  height: auto;
  min-height: 100px;
  font-size: 14px;
  border-radius: 10px;
  border: 0px solid #ccc;
  padding: 0 16px;
  overflow: hidden;
  box-sizing: border-box;
}


.input-wrapper input::placeholder,
.input-wrapper input::-webkit-input-placeholder,
.input-wrapper input:-ms-input-placeholder {
  color: #888;
  font-size: 20px;
}



.input-wrapper button {
  position: absolute;
  right: 15px;
  bottom: 9px;
  transform: translateY(-50%);
  padding: 5px 5px 4px 8px;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  color: #ffffff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
}



.submitButton {
  width: 40px;
  height: 40px;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  padding: 10px 10px 10px 13px;
  font-size: 20px;
  color: #ffffff;
  border: 0px solid #ffffff;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 4px 41px rgba(0, 0, 0, 0.1);
}

.removeButton {
  width: 20px;
  height: 20px;
  font-size: 15px;
  background: #ffffff;
  padding: 0px 0px 0px 1px;
  margin-left: 3px;
  color: #fa9595;
  border: 1px solid #fa9595;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 4px 41px rgba(0, 0, 0, 0.1);
}

.removeButton:hover {
  background: #fa9595;
  color: #ffffff;
  border: none;
}

.card.mainSection,
.card:has(.followup-button),
.card:has(#resetButtonDynamic) {
  padding: 15px;
  gap: 8px;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}


.resetButton {
  display: none;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.resetButton:hover {
  background: #000000;
}

.plus-button-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

#toggleButton {
  width: 70px;
  height: 70px;
  font-size: 50px;
  margin: 0 auto;
  padding: 8px 10px;
  color: #ffffff;
  border: none;
  border-radius: 10%;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  box-shadow: -8px 1px 46px rgba(53, 153, 181, 0.3);
}

#toggleButton:hover {
  background: linear-gradient(134deg, rgb(248, 5, 5), rgb(250, 0, 247));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

#recent-searches {
  margin-top: 1rem;
  background: #f0f4ff;
  padding: 0.8rem;
  border-radius: 8px;
}

.recent-item {
  margin-bottom: 0.6rem;
  padding: 0.4rem;
  border-bottom: 0px solid #ccc;
}

.latest-result {
  background: #ffffff;
  padding: 1rem;
  margin-bottom: 1rem;
}

.no-data-card {
  padding: 5px;
}

.no-data-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}

.no-data-text {
  font-size: 14px;
}


.no-data-card.card {
  border: 4px solid #000;
  background: #f8ffac;
}


.customHyperlink {
  color: #3466d9;
  text-decoration: underline;
  border-radius: 0px;
  position: relative;
  transition: color 0.3s ease;
}

.customHyperlink::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #007acc;
  transition: width 0.3s ease;
}

.customHyperlink:hover {
  text-decoration: none;
  font-size: 16px;
}

.customHyperlink:hover::after {
  width: 100%;
}


.small-progress {
  width: 40px;
  height: 40px;
}

.css-doughnut {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#0010da 0%, #06e4fb 75%, #e0e0e0 75% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease;
}

.css-doughnut-inner {
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.css-doughnut-text {
  font-size: 24px;
  color: #599fc6;
}




/*-----MAIN- CALENDAR APP--------*/
/* Calendar Navigation */
.calendar-nav-card {
  padding: 10px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.calendar-nav button {
  font-size: 14px;
  padding: 12px 12px;
  border: 0px solid #ddd;
  background: #ededed;
  cursor: pointer;
  border-radius: 15px;
}

.calendar-nav button:hover {
  background: #e0e0e0;
}

#current-month-year {
  font-size: 28px;
  font-weight: 200;
}

/* Calendar Card - Fixed Height */
.calendar-card {
  padding: 15px;
  min-height: auto !important;
  height: auto !important;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.calendar-header {
  padding: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  background: #f5f5f5;
  border-radius: 4px;
}

.calendar-day {
  aspect-ratio: 1;  /* Makes it square */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
}

.calendar-day.active {
  background: #06f765;
  color: #000;
  font-weight: 600;
}

.calendar-day.disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.event {
  background: #ffeb3b;
}

.calendar-day:not(.disabled):hover {
  background: #000;
  color: #fff;
}

/* Time Slots */
.time-slot-card {
  padding: 20px;
}

.time-slot-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.time-slot {
  padding: 15px 15px;
  border: 1px solid #ddd;
  background: #ffffff;
  cursor: pointer;
  border-radius: 16px;
}

.time-slot.selected {
  background: #06f765;
  border-color: #06f765;
}

.time-slot.booked {
  background: #f5f5f5;
  color: #aca9a9;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-slot:not(.booked) {
  background: rgb(252, 252, 169);
}

.time-slot:not(.booked):hover {
  background: #f5f5f5;
}


.selected-slot-card {
  background: transparent;
}

.selected-slot-info {
  padding: 10px;
  background: transparent;
  border: 0px solid #06f765;
}

.selected-slot-info h3 {
  margin: 0 0 15px 0;
  color: #000;
  font-size: 18px;
}

.selected-slot-info strong {
  color: #000;
}

.notification-card {
  padding: 10px;
  background-transparent;
}

.notification {
  padding: 25px;
  margin: 10px;
  text-align: center;
  background: rgb(252, 252, 169);
  border: 1px solid #ddd;
  border-radius: 20px;
}

.notification a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.notification a:hover {
  color: #06f765;
}

/* Booking Form */
.booking-form-card {
  padding: 20px;
}

.form-row {
  background: transparent;
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
  color: #55555;
}

.form-row input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}


.form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

.book-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(134deg, rgb(5, 62, 248), rgb(250, 0, 247));
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

.book-button:hover {
  background: #000000;
  color: #ffffff;
}

/* Terms */
.terms-card {
  padding: 15px;
}

.terms {
  text-align: center;
  background: #e8e8e8;
  padding: 12px 1px 12px 1px;
  border-radius: 15px;
}

.terms a {
  color: #000;
  text-decoration: underline;
}

/* Hidden utility */
.hidden {
  display: none !important;
}






/*-------------------Main-Recommend-Card-Info-----------------*/
.card.info-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-info-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.card-info-item {
    display: flex;
    align-items: center;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-info-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}


.card-info-item.highlight {
    background-color: rgba(0, 0, 0, 0.03);
    border: 4px solid #000000;
    transform: scale(1.02);
}

.card.step-highlight {
    background: rgb(161, 255, 0);
    border: 4px solid #000000;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-unicode {
    font-size: 30px;
    color: #6b6767;
    background: linear-gradient(134deg, #f2efef, rgb(247, 241, 247) 39.5%, #f6ecec 99.58%);
    border-radius: 12%;
    padding: 3px 12px 3px 12px;
}

.icon-unicode-validation-valid {
    width: 50px;
    height: 50px;
    font-size: 35px;
    color: #ffffff;
    background: linear-gradient(to bottom right, #f6fb93 0.42%, #2aaf49);
    border-radius: 50%;
    padding: 2px 8px 9px 8px;
}

.icon-unicode-validation-invalid {
    width: 50px;
    height: 50px;
    font-size: 35px;
    color: #ffffff;
    background: linear-gradient(to bottom right, #e07fd5 0.42%, #af2a2a);
    border-radius: 50%;
    padding: 1px 12px 5px 13px;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-main-label {
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    margin-left: 10px;
}

.card-sub-label {
    font-size: 12px;
    font-weight: 400;
    color: #86868b;
}




/*-------------------Main-Recommend-Links-----------------*/
#essentialsCard {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  gap: 30px;
  padding: 45px;
  background: #ffffff;
}

#essentialsCard .essential-main-title {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
}

.essentials-card {
  position: relative; 
}

.essentials-card.step-highlight::before {
  content: '';
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background-color: rgba(161, 255, 0, 0.3); /* green overlay */
  border-radius: 30px;
  z-index: 0; /* behind the content */
  pointer-events: none; /* allow clicks through the overlay */
}


.essential-item-container {
  position: relative;
  background: linear-gradient(134deg, #f2efef, rgb(242, 238, 238) 39.5%, #edf6f5 99.58%);
  padding: 8px;
  z-index: 1;
}

.essential-grid-item {
  background-color: #f9f9f9;
  background-clip: padding-box;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.essential-grid-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.essential-item {
  width: 100%;
}

.essential-link {
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.essential-link:hover {
  transform: scale(1.1);
}

.essential-link .icon-unicode {
  cursor: pointer;
}

.essential-title {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: #000000;
  padding: 5px;
  margin-bottom: 5px;
}

.essential-unicode {
  flex-shrink: 0;
  font-size: 50px;
  font-weight: 800;
  color: #f11157;
  text-align: center;
  padding: 5px;
}



.relational-diagram-card {
  background: #ffffff;
  color: #000000;
}

.relational-diagram-card strong {
  color: #000000;
}

.relational-diagram-card .card-description {
  color: #000000;
}

.decision-maker-card {
  background: #ffffff;
  color: #000000;
}

.decision-maker-card strong {
  color: #000000;
}

.decision-maker-card .card-description {
  color: #000000;
}




/*-------------------Main-Recommend-Tax-----------------*/
.tax-info {
  text-align: center;
  padding: 10px;
  border-radius: 15px;
  background: linear-gradient(134deg, rgb(254, 217, 217), rgb(248, 201, 248));
}

.tax-info strong {
  color: #333;
  font-weight: 600;
}

.tax-card,
.estate-card,
.population-card {
  order: 4;
  padding: 16px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 12px;
}

.badge.confirmed {
  background: #e6f7e6;
  color: #1a7f37;
}

.badge.partial {
  background: #fff6e0;
  color: #8a6d1d;
}

.badge.missing {
  background: #fdecea;
  color: #a61b1b;
}

.warning {
  color: #a61b1b;
}




/*-------------------Responsive design for search-----------------*/
@media (max-width: 480px) {
  .grid {
    padding: 15px;
  }
  .card {
    font-size: 14px;
    padding: 15px; 
    border-radius: 32px;
  }
  .card::before {
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .grid {
    padding: 20px;
  }
  
  .card {
    font-size: 14px;
    padding: 15px;  
    border-radius: 32px;
  }
  .card::before {
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {

  .css-doughnut {
   width: 50px;
   height: 50px;
  }

  .doughnut-wrapper {
   width: 60px;
   padding: 9px;
  }

  .doughnut-label {
   font-size: 13px;
  }

  .css-doughnut-text {
   font-size: 16px;
  }

}


/* Responsive */
@media only screen and (max-width: 768px) {
  .calendar {
    max-width: 100%;
    gap: 5px;
  }
  
  .calendar-day {
    font-size: 12px;
  }
}

