/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}
 
/* Header */
h1, h2, h3 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
 
/* Links */
a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
    color: #0056b3;
}
 
/* Forms */
form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
form input,
form textarea,
form select,
form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}
form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
form button:hover {
    background-color: #0056b3;
}
 
/* Tables (e.g., Dashboard) */
table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}
table th {
    background: #007bff;
    color: #fff;
    font-weight: bold;
}
table tr:nth-child(even) {
    background: #f9f9f9;
}
table tr:hover {
    background: #f1f1f1;
}
 
/* Buttons */
button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
button.edit {
    background-color: #ffc107;
    color: #fff;
}
button.edit:hover {
    background-color: #e0a800;
}
button.delete {
    background-color: #dc3545;
    color: #fff;
}
button.delete:hover {
    background-color: #c82333;
}
 
/* Container */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px 0;
    background: #333;
    color: #fff;
    font-size: 14px;
}

