body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f5f5f5;
    text-align: center;
    margin: 0;
    padding: 2rem;
}

h1, h2 {
    margin-bottom: 1rem;
}

table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 16px;
    border-bottom: 1px solid #444;
}

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

tr:hover {
    background-color: #3a3a3a;
}

img {
    width: 80px;
    height: auto;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

img:hover {
    transform: scale(1.05);
}

h3 {
    margin: 0;
    font-size: 1rem;
}

span {
    background-color: #444;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Overlay styling */
#imgOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#imgOverlay img {
    min-width: 600px;
    max-width: 90%;
    min-height: 600px;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
