/* Reset default browser styles */
body,
h1,
h2,
h3,
p,
ul,
li,
blockquote,
address {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
}

.top_section {
    background-color: #fff;
    padding-left: 20px;
    width: 100%;
}

.container {
    display: flex;
    width: 100%;
    background-color: #f0f0f0;
    /* Adjust max-width as needed */
    margin: 0 auto;
}

.sidebar {
    margin: 10px;
    width: 25%;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.content {
    margin: 10px;
    width: 70%;
    background-color: #fff;
    padding: 20px;
    margin-left: auto;
    border-radius: 5px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    color: #333;
    margin-bottom: 5px;
}

header h2 {
    font-size: 1.2em;
    color: #333;
    border-bottom: none;
}

header h3 {
    color: #666;
}

section p {
    padding: 10px;
}

section div {
    padding: 10px;
}

section {
    margin-bottom: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

h2 {
    font-size: 1.8em;
    color: #333;
    /* border-bottom: 2px solid #f4f6f9; */
}

.color_green {
    color: green;
}

.verifiedicone {
    width: 15px;
    height: 15px;
}


.heading {
    background-color: #1a5f6b;
    color: #fff;
    padding: 10px;
    font-weight: bold;
}

.btn {
    padding: 5px 10px;
    color: #fff;
    width: 95%;
    border-radius: 5px;
    margin-top: 10px;

}

.btn_danger {
    background-color: #ac1b2b;
}

.btn_success {
    background-color: #1e7e34;
}

.btn_info {
    background-color: #1a5f6b;
}

.btn_warning {
    background-color: #705200;
}

.btn a {
    text-decoration: none;
    color: #fff;
}

.atozdiseases {
    background-color: #eee;
    border-radius: 5px;
    padding: 20px;
}

.atozdiseases a {
    color: #325781;
    text-decoration: none;
    padding: 10px;
}

.atozdiseases a:hover {
    color: red;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

blockquote {
    font-style: italic;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 5px solid #ccc;
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #ccc;
    background-color: #fff;
    color: #666;
    font-size: 0.9em;
}

address {
    margin-top: 10px;
    font-style: normal;
    font-size: 1.1em;
}

.profile_image_display_size {
    width: 100px;
    border-radius: 50px;
    height: 100%;
}

.text_center {
    text-align: center;
}

.dividor {
    border-bottom: 1px solid #ccc;
    height: 5px;
}

.float-right {
    float: right;
}

.listgroup {
    margin: 0px;
    margin-top: 1em;
}

.listgroupitem {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.margintopdefault {
    margin-top: 15px;
}

.error_display {
    padding: 10px;
    background-color: #ac1b2b;
    color: #fff;
    text-align: center;
    width: 90%;
    border-radius: 5px;
    margin: auto;
}

.width44 {
    width: 44px;
}

.height44 {
    height: 44px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header h2 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.6em;
    }

    main {
        padding: 15px;
    }

    blockquote {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8em;
    }

    header h2 {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.4em;
    }

    blockquote {
        font-size: 0.8em;
    }
}