/* Small screens - Mobile devices (below 768px) */
@media (max-width: 767px) {
   
    .sections.main_details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sections.main_details .left,
    .sections.main_details .right {
        width: 100%;
        display: block;
    }

    .sections.main_details .left {
        margin-bottom: 0.5rem;;
    }
    .sections.main_details .right {
        width: 98%;
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    /* Fullscreen Modal Mobile Adjustments */
    .fullscreen_close_btn,
    .fullscreen_nav_btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .fullscreen_close_btn {
        top: 10px;
        right: 10px;
    }

    .fullscreen_nav_btn.prev-btn {
        left: 10px;
    }

    .fullscreen_nav_btn.next-btn {
        right: 10px;
    }

    .fullscreen_image_counter {
        bottom: 10px;
        font-size: small;
        padding: 8px 15px;
    }

    .expand {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }

    .expand i {
        font-size: small;
    }
}

/* Tablets and larger screens (768px and above) */
@media (min-width: 768px) {
    .sections.main_details {
        display: flex;
        flex-direction: row;
    }

    .sections.main_details .left {
        flex: 1;
    }

    
}