/* Header container for the title */
.packages-header-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Packages container */
.netsolution-com-bd-packages-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;
}

/* Package item styles */
.package-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 */
}

/* Package name ribbon */
.package-name-ribbon {
    position: absolute;
    top: 0;
    left: 0; /* Left side ribbon */
    background: #007bff;
    color: #fff;
    padding: 5px 10px;
    font-size: 20px;
    font-weight: bold;
    border-bottom-right-radius: 4px; /* Match left-side positioning */
}

/* Maximum package limit (larger font size) */
.maximum-package-limit {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: red !important; /* Updated color to red */
}

/* Package limit details */
.package-limit-detail {
    color: #555;
    font-size: 14px;
}

/* Movie/TV section */
.movie-tv-package-limit-detail {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.movie-tv-package-limit-detail h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.movie-tv-package-limit-detail p {
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price button */
.netsolution-com-bd-package-price {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Price button hover effect */
.netsolution-com-bd-package-price: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 */
}

/* Package duration rule */
.per-month-duration-package-rule {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    display: block; /* Ensure it is displayed as a block element */
    position: relative; /* Ensure it's in the correct stacking context */
    z-index: 1; /* Ensure it's above other content if necessary */
}