.elementor-20 .elementor-element.elementor-element-4897fc5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-20 .elementor-element.elementor-element-8d1dd3d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-2108095 *//* General & Typography */
body {
    font-family: 'Baloo Da 2', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #eef1f5 100%); 
    color: #2c3e50; 
    line-height: 1.6;
    text-align: justify; 
}

/* Header Styling */
.main-header {
    background-color: #3498db; 
    color: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    animation: slideInDown 1s ease-out; 
}

.main-header h1 { font-size: 2.5em; margin-bottom: 5px; }

/* Container (Grid) */
.container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px;
    display: grid;
    /* রেসপনসিভ গ্রিড: স্ক্রিন সাইজ অনুযায়ী কলামের সংখ্যা পরিবর্তন হবে */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
}

/* Disease Card Styling (The Boxes) */
.disease-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out; 
    border-left: 5px solid transparent; /* প্রাথমিক বর্ডার */
    position: relative;
    overflow: hidden;
}

.disease-card:hover {
    transform: translateY(-8px); /* হোভার করলে কার্ড সামান্য উপরে উঠবে */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Card Content Styling */
.disease-name {
    color: #2980b9; 
    margin-top: 0;
    font-size: 1.6em;
    border-bottom: 3px solid #ecf0f1;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.card-section h3 {
    color: #34495e; /* গাঢ় নীল/ধূসর সেকশন হেডিং */
    font-size: 1.1em;
    margin-top: 15px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ecf0f1;
    padding-bottom: 5px;
}

/* Symptoms & Treatment Points Styling for Clarity */
.symptom-points, .treatment-points {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.symptom-points li {
    font-size: 0.95em;
    color: #3498db; /* উপসর্গের জন্য নীল রং */
    margin-bottom: 5px;
    padding-left: 10px;
    border-left: 2px solid #3498db;
    background-color: #f8faff; /* হালকা ব্যাকগ্রাউন্ড শেড */
}

.treatment-points li {
    font-size: 0.95em;
    color: #16a085; /* চিকিৎসার জন্য সবুজ রং */
    margin-bottom: 5px;
    padding-left: 10px;
    border-left: 2px solid #1abc9c;
    background-color: #fafff8; /* হালকা ব্যাকগ্রাউন্ড শেড */
}

/* Do's and Don'ts Styling */
.do-dont-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.do {
    color: #27ae60; 
    font-weight: 600;
    padding: 5px 10px;
    background-color: #e8f5e9; /* হালকা সবুজ ব্যাকগ্রাউন্ড */
    border-radius: 5px;
    margin-bottom: 5px;
}

.dont {
    color: #c0392b; 
    font-weight: 600;
    padding: 5px 10px;
    background-color: #ffebee; /* হালকা লাল ব্যাকগ্রাউন্ড */
    border-radius: 5px;
    margin-bottom: 5px;
}

/* Custom Colors for border-left (for Visual Interest) - Repeating a cycle of 10 colors */
.light-cyan { border-left-color: #00bcd4; }
.light-red { border-left-color: #f39c12; }
.light-green { border-left-color: #27ae60; }
.light-indigo { border-left-color: #3f51b5; }
.light-orange { border-left-color: #e67e22; }
.light-pink { border-left-color: #e91e63; }
.light-blue { border-left-color: #3498db; }
.light-teal { border-left-color: #1abc9c; }
.light-yellow { border-left-color: #f1c40f; }
/* 10th color - Reusing indigo for variety: */
.light-indigo:nth-child(10n) { border-left-color: #9b59b6; } 


/* Footer Styling */
.main-footer {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
    margin-top: 50px;
}

/* Keyframe Animations */
@keyframes slideInDown {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77eb0dd */.medimax-blog {
  padding: 40px;
  background: #f9fafc;
  font-family: "Segoe UI", sans-serif;
}

.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.2rem;
  color: #2b3a67;
}

.blog-header p {
  color: #555;
  font-size: 1.1rem;
  margin: 10px 0 20px;
}

#searchBar {
  padding: 10px;
  width: 60%;
  max-width: 500px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.disease-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.disease-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.3s ease;
}

.disease-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.disease-card h2 {
  font-size: 1.2rem;
  color: #1a237e;
  margin-bottom: 10px;
}

.disease-card p {
  font-size: 0.95rem;
  color: #444;
  margin: 5px 0;
}/* End custom CSS */