body {
    font-family: Arial, sans-serif;
    background-color: #222;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

header {
    background: #111;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px;
    position: sticky;
    top: 0;
    background: #222;
    padding: 10px;
    z-index: 1000;
}

.search-container input,
.search-container select,
.search-container button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

.search-container input {
    width: 150px;
}

.search-container button {
    background: #ff9800;
    color: #fff;
    cursor: pointer;
}

/* Flex container for displaying the movie cards */
.results-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

/* Each movie card */
.movie-card {
    background: #333;
    padding: 20px;
    width: 100%;
    max-width: 850px;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    word-wrap: break-word;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Styling for the title and thumbnail */
.movie-title {
    font-size: 20px;
    font-weight: bold;
    color: #ff9800;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.movie-poster {
    width: 200px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Select dropdown styling */
.movie-card select {
    margin-top: 10px;
    width: 100%; /* Make sure the dropdown takes up the full width */
    font-size: 14px;
}

/* Styling for the Request button */
.movie-card .download-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    width: 25%;
    margin-top: 10px;
}

/* Text styling */
.movie-card p {
    font-size: 14px;
    margin: 5px 0;
}

.download-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
}

.request-btn {
    background: #ff9800; /* Match the background color of the Search button */
    color: white;
    border: none;
    padding: 10px 20px; /* Set padding like the Search button */
    cursor: pointer;
    font-size: 16px; /* Adjust font size */
    border-radius: 5px;
    width: 100%; /* Make the button full-width for better usability */
    margin-top: 10px; /* Move the button down by 1 line */
}
