
  body {
    background-color: #f8f9fa1c;
  }
  .container {
    background: #f1f1e7;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.548);
    padding: 10px 10px 30px 10px;
    margin-bottom: 30px;
    max-width: 98%;
    width: 98%;
  }
  h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #2895b6;
  }
  .table {
    border-radius: 20px;
    overflow: visible;
    background: #e7ece89f;
  }
  .table th, .table td {
    vertical-align: middle;
    text-align: center;
  }
  .table-success {
    background-color: #d1e7dd !important;
  }
  .navbar {
    border-radius: 0 0 12px 12px;
  }

 /* MODAL  */
  .modal-dialog {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: #fff;
    max-width: 500px;
    margin: auto;
  }
  .modal-content {
    border-radius: 16px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8fafc 80%, #e0f7fa 100%);
    border: none;
    box-shadow: 0 4px 16px rgba(52,58,64,0.10);
  }
  .modal-header {
    border-bottom: none;
    padding-bottom: 0;
  }
  .modal-title {
    font-weight: 700;
    color: #343a40;
  }
  .modal-footer {
    border-top: none;
    padding-top: 0;
    justify-content: flex-end;
  }
  .btn-close {
    border: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  .btn-close:hover {
    opacity: 1;
  }