/* styles.css - General Stylesheet (Located in: /assets/css/) */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.container {
    width: 50%;
    margin: 100px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
    text-align: center;
    color: #333;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, select, button {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
}
button:hover {
    background-color: #218838;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #007bff;
    color: white;
}

/* index.css - Styles for Login Page (Located in: /assets/css/) */
.index-container {
    width: 30%;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.index-container h2 {
    color: #333;
}
.index-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.index-container input, .index-container button {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.index-container button {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}
.index-container button:hover {
    background-color: #0056b3;
}