body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF7E9;
}

.full-body-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
}

#theme-color {
    font-family: 'Baloo 2', cursive;
    font-size: 100px;
    font-weight: 900;
    color: #F05A24;
    text-align: center;
    margin: 15px 0 0 0;
}

.separator-line {
    display: block;
    margin: 2px auto;
    width: 80%;
    max-width: 900px;
    height: auto;
}

.subtitle {
    font-family: 'Baloo 2', cursive;
    font-size: 42px;
    font-weight: 2000;
    color: #F1D648;
    text-align: center;
    margin: 10px 0;
}

.disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e1e1e1;
    color: #3a3a3a;
    text-align: center;
    padding: 0.5px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.filter-container {
    position: fixed; 
    top: 70px; 
    right: 14px; 
    z-index: 900; 
    pointer-events: auto; 
    background-color: #FFF7E9; 
    border: 5px solid #F1D648; 
    border-radius: 10px; 
    padding: 15px;
    width: 200px; 
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    align-items: flex-start; 
}

.filters .filter-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.filters label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #F05A24; 
}

.filters select,
.filters input {
    box-sizing: border-box;
    padding: 5px 8px; 
    font-family: 'Baloo 2', cursive;
    font-size: 14px;
    border: 3px solid #F1D648; 
    border-radius: 5px; 
    width: 100%; 
    background-color: #FFF7E9; 
    color: #eb815a;
}

.filters select option {
    background-color: #FFF7E9; 
    color: #F05A24; 
}

.filters select:hover,
.filters input:hover {
    border-color: #F05A24; 
}

.filters select:focus,
.filters input:focus {
    outline: none; 
    border-color: #F1D648; 
}

.input-box {
    border-radius: 50px;
    border: 3px solid #F05A24;
    background-color: rgba(245,93,38,0.18);
    display: flex;
    align-items: center;
    padding: 12px;
    margin-top: 10px;
    width: 600px;
}

.input-box img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.input-box input {
    width: 100%;
    margin-left: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: rgba(240,90,36,0.01);
    color: #333;
}

.input-box input::placeholder {
    font-style: italic;
    color: #333;
}

#answer-box {
    width: 600px;
    margin-top: 10px;
}

.medicine-name {
    font-family: 'Baloo 2', cursive;
    font-size: 23px;
    font-weight: bold;
    color: #F05A24;
    border: 3px solid #fcc435;
    border-radius: 8px;
    padding: 4px;
    background-color: #FCD46C;
    display: inline-block;
    margin-bottom: 2px;
}

.custom-line {
    border: none;
    height: 4px;
    background: linear-gradient(to right,#F05A24,#f0d93f,#F05A24);
    border-radius: 3px;
    margin: 10px 0;
    width: 100%;
}
  
.image-container {
    position: fixed;
    top: 100px;
    left: 40px;
    z-index: 2000;
}

.image-container img {
    height: 220px;
    width: auto;
}
  
.learn-btn {
    margin-top: 8px;
    padding: 4px 14px;
    border-radius: 4px;
    border: 1px solid #F05A24;
    background: #ffaaa9;
    color: #FFF;
    cursor: pointer;
    font-family: 'Quicksand',sans-serif;
}
  
#overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
}
  
#modal {
    max-width: 720px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    font-family: 'Quicksand',sans-serif;
    box-shadow: 0 4px 18px rgba(0,0,0,0.35);
    position: relative;
}
  
#close-btn {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 38px;
    background: none;
    border: none;
    cursor: pointer;
    color: #F05A24;
}
  
#how-it-works {
    position: fixed;
    bottom: 17px;
    left: 22px;
    font-size: 24px;
    font-family: 'Baloo 2', cursive;
    font-weight: bold;
    color: #F05A24;
    cursor: pointer;
    z-index: 900;
}
  
.tooltip {
    position: absolute;
    max-width: 260px;
    font: 14px/1.35 'Quicksand',sans-serif;
    background: #fff;
    border: 1px solid #888;
    border-radius: 6px;
    padding: 8px 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 2100;
}
  
.top-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}