
    .low-stock {
      color: red;
      font-weight: bold;
    }

    .alert-warning {
      background-color: #ffe5e5;
      color: red;
      border-left: 5px solid red;
      padding: 10px;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .product-orders {
      display: block;
      margin-top: 5px;
      color: gray;
      text-transform: capitalize;
    }

    /* Modal Styles */
    #globalModal {
      display: none;
      position: fixed;
      z-index: 9999;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
      justify-content: center;
      align-items: center;
      font-family: Arial, sans-serif;
    }

    #globalModal .modal-content {
      background: white;
      padding: 1.5rem;
      max-width: 400px;
      width: 90%;
      border-radius: 6px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      text-align: center;
    }

    #globalModal h3 {
      margin-top: 0;
    }

    #globalModal p {
      margin: 1rem 0 1.5rem;
      font-size: 1rem;
    }

    #globalModal .modal-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    #globalModal button {
      padding: 0.5rem 1.2rem;
      font-size: 1rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    #globalModal .btn-confirm {
      background-color: #6b46c1;
      color: white;
    }

    #globalModal .btn-cancel {
      background-color: #e2e8f0;
      color: #333;
    }
 