.kashrut-search-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.kashrut-search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.kashrut-search-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.kashrut-search-input {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.kashrut-search-input:focus {
    outline: none;
    border-color: #4CAF50;
}

.kashrut-search-btn {
    padding: 12px 28px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.kashrut-search-btn:hover {
    background: #43a047;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.kashrut-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.kashrut-select {
    padding: 10px 14px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #fff;
    min-width: 200px;
    cursor: pointer;
}

.kashrut-results {
    min-height: 200px;
}

.kashrut-intro {
    text-align: center;
    color: #6c757d;
    padding: 40px;
    font-size: 16px;
}

.kashrut-no-results {
    text-align: center;
    color: #dc3545;
    padding: 40px;
    font-size: 16px;
}

.kashrut-results-count {
    margin-bottom: 15px;
    color: #495057;
    font-size: 14px;
}

.kashrut-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.kashrut-results-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.kashrut-results-table thead {
    background: #212529;
    color: #fff;
}

.kashrut-results-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.kashrut-results-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.kashrut-results-table tbody tr:hover {
    background: #f8f9fa;
}

.kashrut-results-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.col-tipologia {
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
}

.col-marca {
    color: #495057;
    font-weight: 500;
}

.col-dettaglio {
    color: #212529;
}

.col-formato {
    color: #6c757d;
    white-space: nowrap;
}

.col-heksher {
    color: #4CAF50;
    font-weight: 500;
    white-space: nowrap;
}

.col-lps {
    text-align: center;
    font-weight: 700;
    width: 60px;
}

.lps-p {
    color: #198754;
    background: #d1e7dd;
    border-radius: 4px;
    padding: 2px 8px;
}

.lps-l {
    color: #0d6efd;
    background: #cfe2ff;
    border-radius: 4px;
    padding: 2px 8px;
}

.lps-pesce {
    color: #664d03;
    background: #fff3cd;
    border-radius: 4px;
    padding: 2px 8px;
}

.col-note {
    color: #6c757d;
    font-size: 13px;
    max-width: 300px;
}

.kashrut-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 15px;
}

.kashrut-page-btn {
    padding: 10px 24px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.kashrut-page-btn:hover {
    background: #43a047;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.kashrut-page-info {
    color: #6c757d;
    font-size: 14px;
}

.kashrut-loading {
    text-align: center;
    padding: 30px;
    color: #6c757d;
}

.kashrut-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #dee2e6;
    border-top-color: #4CAF50;
    border-radius: 50%;
    animation: kashrut-spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes kashrut-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .kashrut-search-row { flex-direction: column; }
    .kashrut-filters { flex-direction: column; }
    .kashrut-select { width: 100%; }
    .kashrut-results-table { font-size: 12px; }
    .kashrut-results-table th,
    .kashrut-results-table td { padding: 6px 8px; }
    .col-note { max-width: 150px; }
}