.cardnoti {
    cursor: pointer;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    transition: all 0.25s ease;
    position: static;
    margin: 0% 45px;
    width: 100px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 10px;
    grid-template-areas: 
      "a";
    margin-top: 0.5%;
    
  }
  .cardnoti-content {
    position: static;
    top: 0;
    left: 0;
    width: 100px;
    min-width: 1770px;
    height: 1150px;
    box-shadow: 0 0 30px var(--shadow-color);
    border-radius: 20px;
  }
  .cardnoti-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;
  }
  .cardnoti:last-child {
    margin-bottom: 0;
  }
  
  .cardnoti:nth-child(1) {
    grid-area: a;
  }
  
  .cardnoti:nth-child(2) .card-label {
    background: #ef4e7ac0;
  } 
  
  .cardnoti-graph {
    position: absolute;
    padding: 5px 0px 0px 0px;
    width: 1770px;
    height: 0px;
  }

  .SearchStyle {
    border: 0px;
    border-radius: 12px;
    background-color: #83868a23;
    margin-top: 10px;
    margin-left: 30px;
    width: 1710px;
    text-align: center;
    font-size: x-large;
    margin-bottom: 20px;
  }

  .SelectStyle {
    border: 0px;
    border-radius: 12px;
    background-color: #83868a23;
    margin-top: 0px;
    margin-left: 30px;
    text-align: center;
    font-size: large;
    margin-bottom: 0px;
  }

.notification-center {
    padding: 20px;
    background-color: transparent;
    border-radius: 10px;
    overflow-y: hidden;
}

h1 {
    margin: 0 0 20px;
    text-align: center;
}

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filters input[type="text"], .filters select {
    padding: 10px;
    font-size: 16px;
    border: 0px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.filters input[type="checkbox"] {
    padding: 10px;
    font-size: 16px;
    border: 0px;
    border-radius: 5px;
    margin-right: 10px;
    width: 30px;
}

.filters .type-filters label {
    margin-right: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.filters label {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.filters .type-filters {
    display: flex;
    align-items: center;
}

.filters label input {
    margin-right: 5px;
}

.notification-list {
    border-top: 1px solid #eee;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    color: #333;
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0);
    transition: background 0.3s;
}

.notification-item.normal {
    background: linear-gradient(135deg, #e0f7e9, #d2f2dc);
}

.notification-item.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
}

.notification-item.update {
    background: linear-gradient(135deg, #cce5ff, #b8daff);
}

.notification-item .content {
    flex-grow: 1;
    margin-left: 15px;
}

.notification-item .date {
    font-size: 0.85em;
    color: #666;
}

.notification-item button {
    margin-left: 10px;
    padding: 5px 15px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.notification-item button:hover {
    background-color: #0056b3;
}

.clear-all {
    padding: 10px 20px;
    border: none;
    background-color: #dc3545;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    margin-top: -30px;
}

.clear-all:hover {
    background-color: #c82333;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.pagination button {
    margin: 0 5px;
    padding: 5px 10px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination button:hover {
    background-color: #0056b3;
}

.pagination .active {
    background-color: #0056b3;
}