.pagination-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 20px 0;
    font-family: 'ABeeZee', Arial, sans-serif;
    font-size: 16px;
}

.pagination-container a,
.pagination-container select,
.pagination-container .ellipsis {
    padding: 6px 14px;
    border: 1px solid #e89bbd;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    background: #ffe6f0; /* match polaroid background */
    color: #b3005e;
    text-decoration: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
}

.pagination-container a:hover,
.pagination-container select:hover {
    background: #ffcce0; /* deeper pink on hover */
    color: #99004d;
    transform: scale(1.05);
    cursor: pointer;
}

.pagination-container a.active {
    background: #ff69b4; /* hot pink for active */
    color: #fff;
    font-weight: bold;
    border-color: #ff69b4;
}

.pagination-container .ellipsis {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #999;
    padding: 6px 10px;
    cursor: default;
}


.polaroid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}
.polaroid {
    width: 170px;
    background: #ffe6f0; /* soft pink tinge */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 8px; /* slight rounding */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, sans-serif;
    margin-bottom: 5px;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.polaroid img {
    width: 170px;
    height: 137px;
    margin-bottom: 5px;
    border-radius: 4px; /* optional: slightly round the image too */
}
.polaroid .percentage {
    font-size: 14px;
    color: #333;
    padding: 5px 0;
}

.letter-heading {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 10px 10px;
    text-align: center;
    width: 100%;
}
.letter-nav {
    text-align: center;
    margin: 20px 0;
}
.letter-nav a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #f4f4f4;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid #ccc;
}
.letter-nav a:hover {
    background-color: #ddd;
}

.gallery-description {
    text-align: center;
    font-size: 15px;
    margin-top: -10px;
    margin-bottom: 20px;
    color: #555;
}
.gallery-header {
    text-align: left;
    margin: 20px auto 5px;
    max-width: 1000px;
    padding: 0 10px;
}
.gallery-description {
    text-align: left;
    margin: 0 auto 20px;
    max-width: 1000px;
    padding: 0 10px;
    font-size: 15px;
    color: #333;
}
.rank-label {
    position: absolute;
    top: 6px;
    left: 6px;
    background-color: #ff69b4; /* hot pink */
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'ABeeZee', sans-serif;
}


