body {
    margin: 0;
    font-family: sans-serif;
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.table-wrapper {
    margin: 30px auto;
    width: 90%;
    background-color: rgba(30, 30, 30, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #555;
}

.btns {
    text-align: center;
    margin-top: 20px;
}

button {
    background-color: #444;
    color: white;
    padding: 10px 20px;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #666;
}

.login-box {
    width: 300px;
    margin: 100px auto;
    background-color: rgba(30, 30, 30, 0.85);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #222;
    color: white;
    border: none;
}

.modal-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
}

.modal-content {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30,30,30,0.95);
    padding: 30px;
    border-radius: 10px;
    display: none;
    min-width: 300px;
    color: white;
}
.filter-box {
    text-align: center;
    margin: 20px auto;
    background: rgba(30, 30, 30, 0.8);
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    color: white;
}

.filter-box input {
    padding: 8px;
    background: #222;
    border: none;
    color: white;
    border-radius: 5px;
}
select {
    padding: 8px;
    background: #222;
    color: white;
    border: none;
    border-radius: 5px;
    margin-top: 5px;
}

.modal-content select {
    width: 100%;
    margin: 10px 0;
}
input {
  padding: 8px;
  background: #222;
  border: none;
  color: white;
  border-radius: 5px;
  margin: 3px;
}
textarea {
    padding: 8px;
  background: #222;
  border: none;
  color: white;
  border-radius: 5px;
  margin: 3px;
}