.movie-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.movie-card {
    background: #1e1e1e;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-poster {
    width: 100%;
    height: auto;
    display: block;
}

.movie-info {
    padding: 10px 15px;
}

.movie-title {
    font-size: 1.1em;
    margin: 0 0 5px 0;
}

.movie-rating,
.movie-released {
    margin: 2px 0;
    font-size: 0.9em;
    color: #ccc;
}

.ms-search {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.ms-search input[type="text"] {
    width: 300px;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    border: none;
    font-size: 1em;
    outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ms-search button {
    padding: 10px 20px;
    border: none;
    background: #ff4c4c;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: background 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ms-search button:hover {
    background: #ff1f1f;
}


.wp-block-post-title {
    display: flex;
    align-items: center;
    justify-content: center;
}