.omdb-movie-box {
    display: flex;
    gap: 20px;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.omdb-poster {
    width: 200px;
    border-radius: 10px;
}

.omdb-details {
    max-width: 600px;
}

.omdb-details h2 {
    margin-top: 0;
    color: white;
}

#omdb-results.omdb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.omdb-grid-item {
    text-align: center;
    cursor: pointer;
    color: #333;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.2s;
}
.omdb-grid-item:hover {
    transform: scale(1.05);
}
.omdb-grid-item img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}
