.product-search-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.product-search-input {
    display: flex;
    gap: 0.5rem;
}

.product-search-input input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.product-search-button {
    padding: 0.75rem 1.25rem;
    border: none;
    background-color: #0d6efd;
    color: white;
    border-radius: 0.25rem;
    cursor: pointer;
}

.product-search-button:hover {
    background-color: #0b5ed7;
}

.product-search-results {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

.products-collection {
    margin-top: 1rem;
}

.product-item {
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    position: relative;
}

/* Styl pro tabulkové zobrazení produktů */
.product-table-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -0.5rem;
    padding-right: 1.5rem; /* Prostor pro tlačítko odstranění */
}

.product-cell {
    flex: 1 1 0;
    padding: 0 0.5rem;
    min-width: 0; /* Aby se obsah mohl zmenšit při nedostatku místa */
}

/* Drobné úpravy pro lepší tabulkový vzhled */
.product-cell .form-group {
    margin-bottom: 0.5rem;
}

.product-cell label {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-cell .form-control {
    width: 100%;
    padding: 0.375rem 0.5rem;
}

.product-item .remove-item {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    color: #dc3545;
    font-size: 1.25rem;
    background: none;
    border: none;
}

.d-none {
    display: none;
}

/* Nový produkt - zvýraznění */
.new-product-item {
    background-color: #e7f5ff;
    border-left: 3px solid #007bff;
}

/* Responzivní chování pro malé obrazovky */
@media (max-width: 768px) {
    .product-table-row {
        flex-wrap: wrap;
    }
    
    .product-cell {
        flex: 0 0 50%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .product-cell {
        flex: 0 0 100%;
    }
}

.btn-primary {
    background-color: #752733;
    border-color: #752733;
    color: white;
}

.btn-primary:hover {
    background-color: #5e1f29;
    border-color: #5e1f29;
}

.btn-primary:disabled {
    background-color: #752733;
    border-color: #752733;
}

.breadcrumb a:hover {
    color: #752733;
}

