/* Custom styles - use Bootstrap utilities for everything else */

body {
    overflow: hidden;
}

/* Custom logo color filter */
.logo {
    filter: invert(1) sepia(1) hue-rotate(69deg) saturate(19) brightness(0.628);
}

/* Thumbnail container with absolute positioning for icon/image layering */
.model-thumbnail-container {
    width: 80px;
    height: 80px;
    position: relative;
}

.model-icon-placeholder {
    position: absolute;
}

.model-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar model list items - no borders/padding, light divider between */
#model-list .list-group-item {
    padding: 8px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

#model-list .list-group-item:first-child {
    border-top: none;
}

/* View options panel - fixed below navbar button */
.view-options-panel {
    position: fixed;
    top: 56px;
    right: 12px;
    z-index: 1050;
    min-width: 220px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.view-options-panel.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Screenshot gallery item with hover actions */
.screenshot-item .screenshot-actions {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.screenshot-item:hover .screenshot-actions {
    opacity: 1;
}

/* Line clamp for description truncation (no Bootstrap equivalent) */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-icon {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
}

.user-icon-placeholder {
    background: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}