body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.search-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

#search-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    margin-right: 10px;
}

#search-button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

#search-button:hover {
    background-color: #0056b3;
}

.movie-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.movie-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.movie-card img {
    width: 100%;
    height: auto;
}

.movie-card h3 {
    text-align: center;
    align-items: center;
    height: auto;
}

.movie-info {
    padding: 10px;
}

.error-message {
    color: red;
    font-weight: bold;
}
