/* Movie/TV Server container */
.netsolution-com-bd-movie-tv-server-container {
    text-align: center;
    padding: 20px 40px; /* Added more padding to the left and right */
    background: #f8f9fa;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

/* Movie/TV Server item styles */
.movie-tv-server-overview {
    width: 250px; /* Default width for each package */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto; /* Center the card inside the container */
}


/* Click button */
.netsolution-com-bd-movie-tv-server-click-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

/* Click button hover effect */
.netsolution-com-bd-movie-tv-server-click-button:hover {
    background: #0056b3;
    transform: scale(1.05); /* Slightly enlarge the button */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow on hover */
}