.app .cards-container {
    margin: 25px auto;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(320px, 1fr));
    grid-gap: 25px;
    grid-template-rows: 1fr;
  }
  
  .app .card-bg {
    border: 1px solid #f2f2f2;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  
  .app .card-bg .btn-dark {
    background-color: #333;
  }
  
  .app .wide {
    grid-column: span 2;
  }
  
  .app .c-p {
    cursor: pointer;
  }
  
  .app .pane-image {
    min-width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
  
  .app .card-section {
    padding: 0 1.5rem;
    box-sizing: border-box;
  }
  
  .app .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    width: 80%;
    margin: 0 auto;
  }
  
  .app .footer-link {
    display: flex;
    align-items: center;
    padding: 0;
    color: #333;
  }

  @media (max-width: 1720px) {
    .app .cards-container {
      grid-gap: 25px;
      grid-template-columns: repeat(3, minmax(300px, 1fr));
    }
    .app .wide {
      grid-column: span 1;
    }
    .app .card-section {
      padding: 0 0.5rem;
    }
    .app .table-rem {
      display: none !important;
    }
    .app .footer {
      width: 90%;
    }
  }
  
  @media (max-width: 1320px) {
    .app .cards-container {
      grid-gap: 25px;
      grid-template-columns: repeat(2, minmax(270px, 1fr));
    }
    .app .wide {
      grid-column: span 1;
    }
    .app .card-section {
      padding: 0 0.5rem;
    }
    .app .table-rem {
      display: none !important;
    }
    .app .footer {
      width: 90%;
    }
  }
  
  @media (max-width: 920px) {
    .app .cards-container {
      max-width: 500px;
      width: 90%;
      font-size: 0.85rem;
      grid-template-columns: repeat(1, minmax(220px, 100%));
    }
    .app .msg-rem {
      display: none !important;
    }
    .app .p-4 {
      padding: 1rem !important;
    }
  
    .app .pane-image {
      min-width: 2rem;
      height: 2rem;
      margin-right: 0.5rem;
    }
    .app .footer-rem,
    .app .footer-link {
      display: none !important;
    }
    .app .footer .d-flex {
      margin: 0 auto;
      text-align: center;
    }
  }
  @media (max-width: 375px) {
    .app .h5 {
      font-size: 1rem;
    }
    .app .cards-container {
      margin: 10px 0;
    }
  }
  
  .app .db-header nav {
    background:rgb(17, 24, 39);
    color:white;
    height:64px;
  }
  
  .app .db-header .input-nav {
    padding:7px;
    background:transparent;
    margin-left:5rem !important;
    width:30rem !important;
  }
  
  .app .db-header .space {
    margin-right:1rem;
  }
  
  .app .db-header .pane-sm {
    width:3rem;
    height:3rem;
  }

  .db-header a{
    color: rgb(255,255,255);
    text-decoration-line: none;
  }

  .db-header a:hover{
    color: rgb(13,110,253);
  }

  .searchModal {
    background: #111827;
    color: rgb(255,255,255);
  }
  
  @media(max-width:1320px) {
    .app .db-header .input-nav {
      width:15rem !important;
    }
  }
  
  @media(max-width:920px) {
    .app .db-header .input-nav, .db-header .space {
      display:none;
    }
  }