html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.new-card {
    /* min-width: 400px; */
    min-height: 240px;
    margin: 1rem 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.new-card {
    font-size: 22px;
}

.product-card {
    /* min-width: 400px; */
    min-height: 240px;
    margin: 1rem 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.sub-card {
    background-color: lightgray;
    margin: 0.5rem 0;
    color: white;
}

    .sub-card p {
        color: black;
        font-size: 22px;
        font-weight: bold;
    }

.sub-card-title {
    color: black;
}

.card-header {
    background-color: #000000cf !important;
    color: white !important;
}

    .card-header img {
        width: 50px;
        height: 35px;
        margin-right: 0.5rem;
        border-radius: 50px;
    }

.active-nonactive {
    color: red !important;
}

    .active-nonactive:hover {
        color: limegreen !important;
    }

.price-container {
    display: flex;
    align-items: center;
}

.old-price {
    margin-right: 10px;
    color: #888;
    text-decoration: line-through;
}

.price {
    color: white;
}

.new-price {
    color: red;
}

.action-link {
    margin-right: 1rem !important;
}

    .action-link a {
        color: white !important;
    }

        .action-link a:hover {
            border-color: gray !important;
            background-color: gray !important;
        }

.grow-table {
    overflow: scroll !important;
    max-height: 600px !important;
    min-height: 300px !important;
}