/* Estilo geral */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #5D1049;
    color: #ffffff;
  }
  
  .dashboard-card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .dashboard-card:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
  }

  /* Navbar */
  .navbar {
    background-color: #9BC53D;
  }
  
  .pedido-card {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .pedido-card:hover {
    transform: scale(1.05);
  }
  
  .btn-concluir {
    background-color: #9BC53D;
    color: #ffffff;
  }
  
  .btn-cancelar {
    background-color: #E63946;
    color: #ffffff;
  }
  
  .status-pendente {
    color: #FFA500;
  }
  
  .status-concluido {
    color: #9BC53D;
  }

  

  /* PDV */
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    color: #333;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 5px;
  }
  
  .list-group-item button {
    background-color: #9BC53D;
    border: none;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .list-group-item button:hover {
    background-color: #7AAE34;
  }
  
  .card {
    background-color: #ffffff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .list-group-item-danger {
    background-color: #E63946;
    color: #fff;
  }
  
  #carrinho-itens {
    max-height: 300px;
    overflow-y: auto;
  }



  /* Formulário */
  form label {
    font-weight: 600;
    color: #ffffff;
  }
  
  form input,
  form select,
  form textarea {
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 5px 10px;
  }
  
  form input:focus,
  form select:focus,
  form textarea:focus {
    outline: none;
    border-color: #9BC53D;
    box-shadow: 0 0 4px #9BC53D;
  }
  
  /* Botão */
  button {
    border-radius: 5px;
    padding: 8px 16px;
  }
  
  button:focus {
    outline: none;
  }
  
  /* Tabela */
  .table {
    margin-top: 20px;
  }
  
  .table-dark th {
    background-color: #6A1B4D;
  }
  
  .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .btn-sm {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
  
  .btn-warning {
    color: #ffffff;
  }
  
  .btn-danger {
    color: #ffffff;
  }
  
  /* Notificação Pop-up */
  #notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
  }
  
  .notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #5CB85C; /* Verde sucesso */
    color: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    max-width: 350px;
    animation: fadeIn 0.3s ease-out;
  }
  
  .notification.info {
    background-color: #5BC0DE; /* Azul informação */
  }
  
  .notification.danger {
    background-color: #D9534F; /* Vermelho perigo */
  }
  
  .notification .message {
    flex-grow: 1;
    font-size: 0.9rem;
  }
  
  .notification .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .notification .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.6);
    width: 0;
    border-radius: 0 0 8px 8px;
    transition: width 5s linear;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  