.orderNewsBigDiv {
    margin-top: 40px;
    /*text-align: center;*/
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.orderNewsInnerDiv {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    white-space: nowrap;
}

.orderNewsInnerDiv::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.orderNews {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px; /* Adds spacing between image and text */
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 280px; /* Increased width to fit both image & text */
    max-width: 280px;
}

.orderNews img {
    width: 80px; /* Set fixed width */
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0; /* Prevents image from shrinking */
}

.orderNews div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.orderNewsHeadline {
    font-size: 16px;
    margin: 0;
    color: #333;
}

.text-muted {
    font-size: 14px;
    color: #777;
    margin: 3px 0;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 14px;
    align-self: start; /* Aligns button to the left */
}


.orderNewsHeadline {
    font-size: 16px;
    margin-top: 10px;
    color: #333;
}

.text-muted {
    font-size: 14px;
    color: #777;
}

.btn-sm {
    margin-top: 5px;
    padding: 5px 10px;
    font-size: 14px;
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
    .orderNews {
        min-width: 180px;
        max-width: 180px;
    }

    .carousel-prev, .carousel-next {
        padding: 8px;
    }
}
.newsRead {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.containerDiv {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.news-cover img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content {
    margin-top: 20px;
    text-align: left;
}

.news-content h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.news-body p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-back:hover {
    background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .news-content h1 {
        font-size: 24px;
    }

    .news-body p {
        font-size: 16px;
    }
}