body {
    background-color: #f92683;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.barra-superior {
    background: black;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.barra-superior img {
    height: 30px;
}

.logout a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

h2 {
    margin-top: 20px;
}

.contenido-dashboard {
    margin-top: 50px;
}

.boton {
    background: white;
    color: #f92683;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
}

.formulario {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: auto;
    color: black;
}

input, select, button {
    margin: 5px;
    padding: 10px;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #f92683;
    color: white;
    border: none;
    cursor: pointer;
}

.tabla-usuarios {
    margin: 20px auto;
    background-color: white;
    color: black;
    border-collapse: collapse;
    width: 80%;
}

.tabla-usuarios th {
    background-color: #f92683;
    color: white;
    padding: 10px;
}

.tabla-usuarios td {
    border: 1px solid #f92683;
    padding: 10px;
    text-align: center;
}

.tabla-usuarios a {
    color: #f92683;
    font-weight: bold;
    text-decoration: none;
}

.tabla-usuarios a:hover {
    text-decoration: underline;
}

