/* css/image_feed.css */
.image-feed {
    grid-column: 3;
    grid-row: 1;
    z-index: 10;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.image-item {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.image-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.image-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.5);
    pointer-events: none;
}

.image-label {
    padding: 3px 5px;
    font-size: 0.7rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
}

.image-placeholder {
    grid-column: span 2;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    color: var(--text-color);
    font-style: italic;
}

.image-placeholder-text {
    color: #888;
    font-style: italic;
}