/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    text-align: center;
}

/* Form Container */
.form-container {
    width: 350px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Input Fields */
input[type="text"], input[type="email"], input[type="password"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
button {
    width: 95%;
    padding: 10px;
    background: #007BFF;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #0056b3;
}

/* Message Box */
.message {
    color: green;
    font-weight: bold;
}


nav {
    background: #333;
    padding: 10px;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}
nav a:hover {
    background: #555;
}

.no-data, .error-message {
    padding: 20px;
    text-align: center;
    color: #666;
}

.error-message {
    color: #ef4444;
}

.error-message button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.error-message button:hover {
    background: #2563eb;
}
