body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

h1 {
    text-align: center;
    margin-top: 20px;
    color: #007bff;
}

.top-employee {
    text-align: center;
    margin: 30px 0;
    animation: fadeIn 1s ease-in-out;
}

.top-employee .congratulations {
    display: inline-block;
    text-align: center;
    padding: 20px;
    background-color: #e8f5e9;
    border: 2px solid #28a745;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.top-employee .congratulations h2 {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 24px;
}

.top-employee .congratulations img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.top-employee .congratulations p {
    font-size: 18px;
    margin: 5px 0;
}

.top-employee .congratulations p strong {
    color: #28a745;
    font-size: 20px;
}

.results-container {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

table thead th {
    background-color: #007bff;
    color: white;
    padding: 10px;
    text-align: left;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #f1f1f1;
}

table th, table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: center;
}

table tbody td:first-child {
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
