body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
}

button {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 8px;
    margin-top: 10px;
}

button:hover {
    background-color: #0b5ed7;
}
input, textarea {
    width: 95%;
    padding: 10px;
    border: none;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #000000d1;
  color: #fff;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    color: white;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #555;
}

.modal {
    display: none;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #222;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: white;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}
