* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.sap-box {
            border: 2px solid #000;
            padding: 20px;
            max-width: 500px;
            margin: auto;
            margin-bottom: 30px;
        }
.table td,
.table th {
            vertical-align: middle;
        }
body {
      background-color: #f3f5f4;
      
    }
.sap-header {
      background-color: #dce6c3;
      padding: 10px;
      font-weight: bold;
      font-style: italic;
    }
table input {
      width: 100%;
      border: none;
      background-color: #f9f9f9;
    }
    
.grid
 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.box {
      border: 1px solid green;
      padding: 15px;
      text-align: center;
      margin: 10px;
      border-radius: 5px;
      min-width: 180px;
    }
.section-title {
      font-weight: bold;
      margin-top: 20px;
      font-size: 1.2rem;
    }
/* .header-title {
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      margin: 20px 0;
    }
.underline {
      text-decoration: underline;
      color: darkred;
    } */






    .card:hover {
        transform: translateY(-3px);
    }

  
    .product-list ul {
        padding-left: 0;
    }

    .product-list ul li {
        padding: 5px 0;
        border-bottom: 1px dashed #ccc;
    }

    .product-list ul li:last-child {
        border-bottom: none;
    }

   .card-footer {
    background-color: transparent;
    border-top: none;
    padding: 0 1rem 1rem;
    justify-content: center;
    gap: 10px;
}
    
    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

.img-product {
    width: 300px;
    height: 300px;
    object-fit: contain;
}