/* General styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
}

.container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
h1 {
    text-align: center;
    color: #333333;
    margin-bottom: 30px;
}

/* Form Section */
.form-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.form-section label {
    margin-right: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

select {
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Buttons */
.button-section {
    text-align: center;
}

button {
    margin: 10px;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.button-primary {
    background-color: #007bff;
    color: #fff;
}

.button-secondary {
    background-color: #6c757d;
    color: #fff;
}

button:hover {
    opacity: 0.9;
}

/* Loading Spinner */
#loading {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #007bff;
}

/* Employee List */
#employee-list {
    margin-top: 30px;
}

.employee-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e2e6ea;
}

.employee-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.employee-card p {
    margin: 8px 0;
}

/* Common Fields and User Statistics */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hidden Elements */
.hidden {
    display: none;
}
