/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select, button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

input[type="number"] {
    width: 60%;
    margin: 0 auto;
}

/* Error and Success Messages */
.error-msg {
    color: red;
    font-size: 18px;
    margin: 10px 0;
}

.success-msg {
    color: green;
    font-size: 18px;
    margin: 10px 0;
}

/* Employee Details Section */
.employee-details {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.employee-photo-container {
    margin: 20px 0;
    text-align: center;
}

.employee-photo {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #ddd;
}

/* Search Form */
.search-form {
    margin-bottom: 30px;
}

.search-form input {
    width: 60%;
    margin: 0 auto;
}

/* Check-in/Check-out Form */
.checkinout-form {
    margin-top: 20px;
}
