/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: Arial, sans-serif;
    background-image: url('../images/canal-6799169.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    color: #000000; /* Set the text color to white to stand out against the dark background */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5); /* Dark background with some transparency */
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

input {
    margin-bottom: 10px;
   
}

button {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #45a049;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    text-align: left;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: rgba(255, 255, 255, 0.7);
}

table th {
    background-color: white;
}

table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

img {
   /* width: 50px;
    height: 50px;*/
    border-radius: 50%;
}

.action-buttons button {
    padding: 5px 10px;
    margin: 5px;
    border-radius: 5px;
}

.action-buttons .edit {
    background-color: #4CAF50;
    color: white;
}

.action-buttons .delete {
    background-color: #f44336;
    color: white;
}

.action-buttons button:hover {
    opacity: 0.8;
}
.user-image {
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Make the image circular */
    object-fit: cover;  /* Ensure the image covers the area without distortion */
}