

.article_inside p{
    font-size: 15px;
    text-align: justify;
    margin-top: 25px;
}

/* Ensure the container doesn't overflow and allows resizing */
.image-container {
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;  /* Center the container */
}

/* Responsive image styling */
.responsive-image {
    width: 100%;
    height: 300px;
    display: block;
}

/* Media queries for different screen sizes */
@media (max-width: 600px) {
    .image-container {
        padding: 10px;
    }
    
    .responsive-image {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .image-container {
        padding: 5px;
    }
    
    .responsive-image {
        width: 100%;
    }
}
.article_inside li {
    font-size: 15px;
    text-align: justify;
    margin-top: 25px;
}

.article_inside h2 {
    text-align: center;
    font-size: 15px;
    margin-top: 25px;
    text-decoration: underline;
}


.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    min-width: 600px;
}

table,
th,
td {
    border: 1px solid #c7c6c6;
}

th,
td {
    padding: 8px;
    text-align: center;
}

th {
    background-color: #f2f2f2;
}

.highlight {
    background-color: #f8d7da;
}

.article_inside {
    padding: 0px 30px;
}

@media only screen and (max-width: 600px) {
    .article_inside {
        padding: 0px 20px;
    }
}

@media (max-width: 600px) {

    th,
    td {
        font-size: 14px;
        padding: 6px;
    }

    table {
        font-size: 14px;
    }
}


.video-container {
    margin-top: 20px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for desktop */
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    border-radius: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 600px) {
    .video-container {
        height: auto; /* Adjust height for mobile */
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
    }

    .video-container iframe {
        height: 100%; /* Ensure iframe takes full height */
    }
}
