body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    line-height: 1.6;
}

h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 2em;
    color: #ffffff;
}

.containerForm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.container-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px;
    width: 80%;
    margin: 10px auto;
}

.item-filter {
    padding: 10px 20px;
    border: 2px solid #15bd39;
    border-radius: 25px;
    font-size: 1em;
    font-weight: bold;
    color: #dadada;
    background-color: rgb(85, 85, 85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.item-filter:hover {
    background-color: #15bd39;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.selected-filter {
    background-color: #15bd39;
    color: white;
}

table {
    margin: 20px auto;
    width: 90%;
    border-collapse: collapse;
    background-color: #2c2c2c;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

table th, table td {
    padding: 15px;
    text-align: center;
}

table th {
    background-color: #15bd39;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

table tr {
    border-bottom: 1px solid #272727;
}

table tr:nth-child(even) {
    background-color: #363636;
}

table tr:hover {
    background-color: #4e4e4e;
}

.deleteButton i {
    color: #e74c3c;
    font-size: 1.5em;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s ease;
}

.deleteButton i:hover {
    color: #c0392b;
    transform: scale(1.2);
}

.logout {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #15bd39;
  border: 1px solid #15bd39;
  padding: 10px;
  color: white;
  font-size: 1em;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.5s;
}

.logout:hover{
  background-color: rgba(0,0,0,0);
  color: #15bd39;
}

footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #cacaca;
    background-color: #2c2c2c;
}
