.dual-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.dual-list-column {
    flex: 1 1 45%;
    min-width: 250px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

    .dual-list-column h4 {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        color: #374151;
    }

.dual-list-wrapper ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
}

.dual-list-item {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.25rem;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .dual-list-item:hover {
        background-color: #f3f4f6;
    }

    .dual-list-item:active {
        background-color: #e5e7eb;
    }

@media (max-width: 768px) {
    .dual-list-wrapper {
        flex-direction: column;
    }

    .dual-list-column {
        flex: 1 1 100%;
    }
}
.tag-chip {
    display: inline-block;
    background-color: #e0e0e0;
    padding: 0 6px;
    border-radius: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
    font-size: 0.875rem;
}

.tag-chip .remove-icon {
    display: none;
    margin-left: 4px;
    cursor: pointer;
}

.tag-chip:hover .remove-icon {
    display: inline;
}
.timeline {
    position: relative;
    height: 2rem;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}
.shift-block {
    position: absolute;
    height: 100%;
    color: #fff;
    padding: 0 4px;
    font-size: 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.break-block {
    position: absolute;
    height: 100%;
    background-color: rgba(255, 0, 0, 0.5);
}
.month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.5rem;
}
.month-cell {
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    font-size: 0.8rem;
}
.day-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Shift log table */
.shiftlog-table-container {
    overflow-x: auto;
}

.shiftlog-table {
    width: 100%;
    border-collapse: collapse;
}

.shiftlog-table th,
.shiftlog-table td {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
}

@media (max-width: 600px) {
    .shiftlog-table th,
    .shiftlog-table td {
        font-size: 0.75rem;
    }
    .month-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .month-cell .shiftlog-table th,
    .month-cell .shiftlog-table td {
        font-size: 0.7rem;
    }
}

.price-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rz-base-200, #e0e0e0);
    border-radius: 0.75rem;
    background-color: var(--rz-base-100, #f8f9fa);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.price-info-item + .price-info-item {
    margin-top: 0.5rem;
}

.price-info-item span {
    flex: 1;
    font-weight: 500;
}

.price-info-item .rz-stack,
.price-info-item .rz-stack .rz-button {
    flex-shrink: 0;
}

.price-info-highlight {
    border-color: var(--rz-secondary, #03a9f4);
    background-color: rgba(3, 169, 244, 0.15);
}

.price-info-highlight span {
    color: var(--rz-secondary, #03a9f4);
}

.product-image-preview {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: var(--rz-elevation-2);
    object-fit: cover;
}

.product-row-new {
    background-color: rgba(25, 118, 210, 0.18);
    box-shadow: inset 0 0 0 1px rgba(25, 118, 210, 0.25);
    transition: background-color 0.3s ease;
}

.product-row-new td {
    color: inherit;
}

.product-row-missing-price {
    background-color: rgba(220, 53, 69, 0.08);
}

.product-row-missing-price td {
    color: #b71c1c;
}

.product-row-missing-price.product-row-new {
    background-color: rgba(220, 53, 69, 0.12);
    box-shadow: inset 0 0 0 1px rgba(25, 118, 210, 0.35);
}
