body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container {
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white to make text readable */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}
h1 {
    color: #333;
}
.error {
    color: red;
    font-size: 14px;
}
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 100px; /* Reduced from default full width */
    padding: 8px; /* Reduced padding */
    background: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 0; /* Add some spacing */
    font-size: 14px; /* Adjust font size for readability */
}
button:hover {
    background: #218838;
}
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.message {
    color: #28a745;
    font-size: 14px;
    margin: 10px 0;
}
.error {
    color: red;
}

ul {
    list-style-type: none;
    padding: 0;
}
li {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
a {
    color: #dc3545; /* Red for delete link */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}