.container {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

thead {
    background-color: #201320;
    color: white;
}

th, td {
    padding: 10px 12px;
    text-align: left;
}

th {
    font-weight: 600;
}

tbody tr {
    border-bottom: 1px solid #ddd;
}

tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

tbody tr:hover {
    background-color: #e8f0fe;
}

td {
    color: #333;
}

.actions {
    display: flex;
    gap: 5px;
}

.btn {
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
    border: none;
}

.btn:hover {
    cursor: pointer;
}

.btn-suppr {
    background: #FF6B6B;
}

.btn-update {
    color: white;
    background: #582B58;
}

.btn-new {
    background: #5B21B6;
    color: white;
}

.alert-container {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.alert {
    min-width: 200px;
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 14px;
    color: white;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-success {
    background: #27ae60;
}

.alert-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
}

#user_form {
    max-width: 300px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


input{
    padding: 3px 7px;
    border: 1px black solid;
    border-radius: 5px;
    height: 25px;
    width: 100%;
}

label {
    font-size: 20px;
    font-weight: 700;
}

select {
    padding: 3px 7px;
    border: 1px black solid;
    border-radius: 5px;
    height: 25px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    justify-content: center;
}

.form-group:last-child {
    margin-bottom: 40px;
}

.pages {
    display: flex;
    justify-content: flex-end;
}

.change-page {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.change-page a {
    background: transparent;
    border: none;
    font-size: 16px;
    text-decoration: none;
    padding: 2px 5px;
    color: black;
}
.change-page a:hover {
    cursor: pointer;
    background: gray;
    transition: 100ms;
    border-radius: 2px;
    color: white;
}

#login_form {
    max-width: 300px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
