/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
    text-align: center;
}

h1 {
    color: #007bff;
    margin: 20px 0;
    font-weight: bold;
}

button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Employee List */
.employee-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Employee Card */
.employee-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 200px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.employee-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.employee-card input[type="radio"] {
    position: absolute;
    top: 10px;
    right: 10px;
}

.employee-card p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .employee-list {
        flex-direction: column;
        align-items: center;
    }

    .employee-card {
        width: 90%;
    }
}
.employee-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.employee-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.15);
}

.employee-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}
.vote-success {
    text-align: center;
    margin-top: 50px;
}

.vote-success {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}

.vote-success h1 {
    font-size: 24px;
    color: #28a745;
    font-weight: bold;
}

img.thumbs-up-icon {
    width: 50%;
}