
html, body {
    height: auto;
    overflow-y: auto;
    padding:0;
  }
  
body {
    font-family: Arial, sans-serif;
    padding: 0px;
    margin: 0;
    background: #fff;
}

.price-table {
    
    display: block;
    max-width: 600px;
    margin: 0 auto;
    margin-top: -10px;
}

.package {
    margin-bottom: 10px;
    font-weight: bold;
}

.price-table table {
    width: 600px;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.price-table tr {
    width: 400px;
    
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    outline: 1px solid #ccc;
}

.price-table th,
.price-table td {
    padding: 12px;
    text-align: center;
    
}

.price-table tr:hover {
    background-color: #f0f8ff;
    cursor: pointer;
    border-left: 4px solid #00bcd4;
}

.price-table .selected {
    background-color: #e0f7fa;
    border-left: 4px solid #00bcd4;
    font-weight: bold;
}

.mobile-section {
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.price {
    color: #d84315;
    font-size: 20px;
    font-weight: bold;
}

.stock-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 5px;
}

.stock {
    color: green;
    font-weight: bold;
    font-size: 16px;
}

.icons {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.icons button {
    border: none;
    background-color: orange;
    padding: 6px;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.icons button:hover {
    background-color: #ff9500;
}

.cart-buttons button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-buttons .add {
    background: linear-gradient(to bottom, #f7dc6f, #f1c40f);
}

.cart-buttons .add:hover {
    background: linear-gradient(to bottom, #f1c40f, #d4ac0d);
}

.cart-buttons .buy {
    background: linear-gradient(to bottom, #f5b041, #e67e22);
}

.cart-buttons .buy:hover {
    background: linear-gradient(to bottom, #e67e22, #ca6f1e);
}

.best-price {
    background-color: #a4a4a4;
    color: black;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    margin: 15px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-details {
    margin-top: 20px;
}

.product-details h3 {
    font-size: 20px;
}

.product-details ul {
    margin: 0;
    padding-left: 20px;
}
