
body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}
.album-container {
    position: relative;
    max-width: 100%;
}
.album-page {
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.album-page img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
}
.navigation {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.stats-overlay {
    margin-top: 15px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}
.stats-overlay p {
    margin: 5px 0;
}
.stats-overlay table {
    margin: 0 auto;
    text-align: left;
}
.stats-overlay th {
    padding-right: 10px;
    font-weight: bold;
}
.tooltip {
    position: fixed;
    display: none;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    pointer-events: none;
    z-index: 100;
    max-width: 300px;
    transition: opacity 0.1s ease-in-out;
}
.tooltip img {
    max-width: 150px;
    display: block;
    margin: 0 auto 10px auto;
}
.tooltip table {
    width: 100%;
    border-collapse: collapse;
}
.tooltip th, .tooltip td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: left;
    font-size: 13px;
}
.tooltip th {
    font-weight: bold;
    background-color: #f7f7f7;
    width: 40%;
}
