/*USERS only card */

.cardusers {
    cursor: pointer;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    transition: all 0.25s ease;
    position: static;
    margin: 0% 90px;
    width: 100px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 10px;
    grid-template-areas: 
      "a";
    margin-top: 0.5%;
    
  }
  .cardusers-content {
    position: static;
    top: 0;
    left: 0;
    width: 100px;
    min-width: 1770px;
    height: 780px;
    box-shadow: 0 0 30px var(--shadow-color);
    border-radius: 20px;
  }
  .carduser-label {
    position: relative;
    top: -35px;
    left: 0rem;
    background: #089f8ac0;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 16px;
    color: white;
    padding: 5px;
    width: 140px;
    border-radius: 12px;
  }
  .cardusers:last-child {
    margin-bottom: 0;
  }
  
  .cardusers:nth-child(1) {
    grid-area: a;
  }
  
  .carduser:nth-child(2) .card-label {
    background: #ef4e7ac0;
  } 
  
  .carduser-graph {
    position: absolute;
    padding: 5px 0px 0px 0px;
    width: 1770px;
    height: 0px;
  }
  
  /* CARD USERS end */

  .searchuser {
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #bdbdbd;
    border-radius: 16px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: 0 0 30px var(--shadow-color);
  }
  .buttspan {
    position: sticky;
    display: flex;
    background-color: var(--primary-color);
    border-radius: 12px;
    border: 0;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    text-align: center;
    width: 370px;
    margin-top: 9px;
    margin-bottom: -16px;
    margin-left: 1200px;
  }
  .buttuser {
    background-color: var(--primary-color);
    border-radius: 15px;
    border: 0;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    text-align: center;
    width: 370px;
    margin-top: -5px;
    margin-left: 283px;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
  }
  
  .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 5000px;
    min-width: auto;
    background: var(--primary-color-light);
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    z-index: 3;
    border-radius: 16px;
  }
  
  .popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .popup-header h2 {
    margin: auto;
    font-size: 1.5em;
    color: var(--text-color);
  }
  
  .close-btn {
    background-color: var(--primary-color);
    border-radius: 15px;
    border: 0;
    color: #eee;
    cursor: pointer;
    font-size: 18px;
    height: 50px;
    text-align: center;
    width: 370px;
    margin-top: 15px;
  }
  
  .popup-content {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-color);
  }
  
  body.dimmed {
    overflow: hidden;
  }
  
  body.dimmed::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3;
  }
  
  .img-poppup {
    top: 10px;
    margin-left: 26%;
    margin-right: auto;
    width: calc(50% - 2em);
    height: calc(50% - 2em);
    border-radius: 26px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
  }
  table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    cursor: pointer;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination button {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    width: 40%;
    border-radius: 5px;
}

.modal-content .close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content .close:hover,
.modal-content .close:focus {
    color: #f44336;
}

.modal-content input[type="text"] {
    margin-top: 10px;
    padding: 8px;
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}
.SearchStyle {
  border: 0px;
  border-radius: 12px;
  background-color: #83868a23;
  margin-top: 10px;
  margin-left: 30px;
  width: 1710px;
  text-align: center;
  font-size: x-large;
}

.modal-content button {
    padding: 10px;
    background-color: #2196F3;
    color: white;
    border: none;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #1976D2;
}