﻿
.new-item-row {
    display: flex;
    gap: 0.5rem;
}

.item-list {
    list-style: none;
    padding-left: 0;
}

.item-row {
    display: flex;
    align-items: center;
    padding: 4px 0;
}

    .item-row span,
    .item-row input {
        height: 32px;
        display: inline-flex;
        align-items: center;
        box-sizing: border-box;
    }

.item-name {
    width: 30%;
    margin-right: 5px;
}

.item-desc {
    width: 50%;
    margin-right: 5px;
}

.drag-handle {
    cursor: grab;
    margin-right: 5px;
}

.camera-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.media-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.media-item {
    cursor: pointer;
}

.media-item-wrapper {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.delete-icon {
    width: 16px;
    height: 16px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.tag-item {
    background: #e0e0e0;
    padding: 2px 6px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .new-item-row {
        flex-direction: column;
    }

    .item-row span,
    .item-row input {
        width: 100% !important;
    }
}
