body, span.form-control {
	background-color: #f6fcff;
}

/* Separation between icons of external sites */
#ext-ids img, .ext-id img {
    margin: 0.5rem;
}

/* Carousel image settings for game page */
.carousel-item img {
    max-height: 360px;
    object-fit: cover;
}
.carousel-inner {
    display: flex;
    flex-wrap: nowrap;
    max-height: 360px;

}
.carousel-inner .carousel-item {
    justify-content: center;
    gap: 10px;
}

.carousel-inner .active {
    display: flex
}

.vignette {
    display: flex;
    height: 400px;
    max-width: 800px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    margin: auto;
}

.poster {
    max-width: 300px;
    flex-shrink: 0;
}

.poster img {
    height: 100%;
    width: auto;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.vignette-content {
    flex-grow: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.vignette-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.ext-id {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.overview {
    flex-grow: 1;
    overflow-y: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.release-name {
    margin-right: 8px;
}

.release-icons {
    vertical-align: middle;
    float: right;
}

.tag-icon {
    height: 24px; /* Adjust icon size */
    width: auto;
}

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
}

#floating-alerts {
    max-width: 400px;
}
.alert {
    animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#nfoModal {
    background: #f6fcff;
}

#nfoViewer {
    max-width: 640px;
    max-height: 650px;
    background: #F5F5F5;
    text-shadow: none;
    box-sizing: border-box;
    white-space: preserve nowrap;
    overflow-y: auto;
    overflow-x: auto;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    color: #0000AA;
    padding: 10px;
    border: 1px solid #0000AA;
    line-height: 1;
}
