

    body {
      background-color: #f4f7fa;
      font-family: 'Roboto', sans-serif;
    }

    .container{
      width:80%;
      margin:auto;
    }

    .cart-container {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-top: 50px;
    }
    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid #e1e1e1;
      padding-bottom: 20px;
      margin-bottom: 20px;
      position: relative;
    }
    .cart-item:last-child {
      border-bottom: none;
    }

    .cart-item img:hover {
      transform: scale(1.05);
    }


    .item-info {
      margin-left: 25px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .item-info h5 {
      font-size: 1.8rem;
      font-weight: 600;
      color: #1d2d50;
      margin-bottom: 10px;
    }
    .item-info p {
      font-size: 1rem;
      color: #6c7c8c;
      margin-bottom: 15px;
    }
    .item-info .item-price {
      font-size: 1.5rem;
      font-weight: bold;
      color: rgb(9, 41, 99);
    }
    .total-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: rgb(9, 41, 99);
      text-align: right;
    }

    .cart-item .item-quantity {
      font-size: 1.2rem;
      color: #333;
      font-weight: bold;
    }
    .cart-header {
      margin-bottom: 30px;
      text-align: center;
      font-size: 2.5rem;
      color: #1d2d50;
      font-weight: 700;
     }



    .checkout-container {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 30px;
      margin-top: 50px;
    }
    .checkout-header {
      text-align: center;
      font-size: 2.5rem;
      color: #1d2d50;
      font-weight: 700;
      margin-bottom: 30px;
    }
    .form-label {
      font-size: 1.1rem;
      color: #1d2d50;
      margin-bottom: 8px;
    }
    .form-control {
      font-size: 1rem;
      padding: 10px;
      border-radius: 10px;
      border: 1px solid #e1e1e1;
      margin-bottom: 15px;
    }
    .form-control:focus {
      border-color: #0d6efd;
      box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
    }
    .form-check-label {
      font-size: 1rem;
      color: #6c7c8c;
    }
    .btn-submit {
      background-color: rgb(9, 41, 99);
      color: white;
      font-size: 1.25rem;
      border-radius: 12px;
      padding: 12px 30px;
      width: 100%;
      border: none;
      transition: background-color 0.3s ease;
    }
    .btn-submit:hover {
      background-color: rgb(113, 145, 204);
      color: white;
    }
    .form-footer {
      font-size: 0.9rem;
      color: #6c7c8c;
      text-align: center;
      margin-top: 20px;
    }
    .form-footer a {
      color: #0d6efd;
      text-decoration: none;
    }
    .form-footer a:hover {
      text-decoration: underline;
    }
