    .script-package-container {
      background-color: #f4f4f4;
      padding: 20px;
      text-align: center;
    }

    .script-package-container h2 {
      color: #333;
    }

    .script-package-container p {
      color: #666;
      font-size: 16px;
    }

.category-section {
    text-align: center;
    margin: 20px;
}

.special-underline {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #ffcc00;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    width: 45%; 
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.product img {
        width: 100%;
        height: 750px;
}

.script-info {
    margin-top: 10px;
}

.script-name {
        font-weight: bold;
        font-size: 25px;
}
.script-name a {
        color: black;
        text-decoration: none;
    }
    .script-name a:hover {
        color: #140B5C;
    }

.statistics {
    margin-top: 5px;
    color: #666;
}

hr {
    margin: 10px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.green-button {
    background-color: #4caf50; /* Green color, adjust as needed */
    color: #fff;
}

.yellow-button {
    background-color: #ffcc00; /* Yellow color, adjust as needed */
    color: #333;
}
@media (max-width: 768px) {
.product {
    width: 98%; 
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
    }