.presidents-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 999;
}

.presidents-dropdown {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
}

.president-image {
    width: 100px;
    height: auto;
    cursor: pointer;
    margin: 5px 0;
    transition: transform 0.2s;
    display: none;
}

.president-image:hover {
    transform: scale(1.1);
}

.other-president {
    border-radius: 50%;
    object-fit: cover;
}

#evil-reagan-image {
    filter: brightness(0.8) contrast(1.2) saturate(1.2);
    border: 2px solid #800000;
}

#evil-reagan-image:hover {
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.4);
}