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;
}

button {
    background-color: #444;
    color: white;
    padding: 8px 16px;
    border: none;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #666;
}

.abutton {
    background-color: #444;
    color: white;
    padding: 8px 16px;
    border: none;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.abutton:hover {
    background-color: #666;
}

.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 !important;
    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;
}
.content-wrapper {
    width: 90%;
    margin: 30px auto;
    background: rgba(30, 30, 30, 0.9);
    padding: 30px;
    border-radius: 15px;
}
form {
    margin-bottom: 20px;
}
form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input, select, textarea {
    width: 30%;
    padding: 10px;
    margin: 8px 0;
    background: #222;
    color: white;
    border: none;
    border-radius: 5px;
}

.note {
    background-color: rgba(50,50,50,0.9);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
}
ul {
    list-style-type: none;
    padding-left: 0;
}
ul li {
    margin-bottom: 10px;
}
.fichier-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fichier-item {
    background: rgba(50, 50, 50, 0.9);
    padding: 15px;
    border-radius: 10px;
}
.uplink {
    text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.uplink:hover {
    text-decoration: none;
  color: #d8d5d5;
  font-weight: 600;
}
.prev {
    font-size: 10em;
  text-align: center;
  width: 100%;
  color: #0d8cfb !important;
}
.delete-form button {
    background-color: #a00;
    color: white;
    margin-top: 10px;
}
.delete-form button:hover {
    background-color: #c00;
}

