/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .container, .nav-links a, .hero h1, .hero p {
        /* Adjustments for mobile views */
    }
}

/* More media queries as needed */
/* Styles for smaller screens (mobile) */
@media only screen and (max-width: 700px) {
    .modal-content {
        flex-direction: column;
        width: 100%; /* Adjusted to 100% for better mobile responsiveness */
        padding: 10px;
    }

    #videoModal .modal-content {
        /* Additional mobile specific styles for videoModal */
        flex-direction: column;
    }

    #filmMain, #movieDetails {
        max-width: 100%;
    }
}

/* Styles for larger screens (desktop) */
@media only screen and (min-width: 700px) {
    .movie img {
        /*width: 175px; /* Larger size for larger screens */
        height: 275px;
    }

    #videoModal .modal-content {
        /* Desktop specific styles for videoModal */
    }
}


@media (max-width: 768px) {
    .search-results {
        width: 90%; /* Allows more breathing room on smaller screens */
    }
}