/* Character card image styling */
.character-card-image {
    height: 200px;
    object-fit: contain; /* Was 'cover' inline */
    cursor: pointer;
    background-color: #f8f9fa; /* A light background for letterboxing */
}

/* Image viewer modal styling */
#image-viewer-modal .modal-dialog {
    max-width: 95vw;
    max-height: 95vh;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#image-viewer-modal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

#image-viewer-img {
    max-width: 100%;
    max-height: 95vh;
    display: block;
    margin: auto;
}
