/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light background color */
    color: #333; /* Text color */
}

/* Header Styles */
.dashboard {
    background-color: #007BFF; /* Blue color for the header */
    color: white;
    padding: 10px;
    text-align: center;
}

.dashboard a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

/* Container Styles */
.container {
    width: 80%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
form {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input[type="text"],
form input[type="date"],
form select {
    width: calc(100% - 22px); /* Full width with padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form input[type="submit"],
form button {
    background-color: #007BFF; /* Button color */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover,
form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
}

/* Error Message Styles */
.error {
    color: red;
    margin-top: 20px;
}

/* Floating Button Styles */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745; /* Green color */
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.floating-button:hover {
    background-color: #218838; /* Darker green on hover */
}
