.search-area {
    position: relative;
}

.live-search-results {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 50px;
}

.search-loading, .no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    background: #fff;
    margin: 10px 0;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.product-name {
    font-weight: 500;
}

.product-price {
    color: #e74c3c;
    font-weight: bold;
}

.product-category {
    color: #3498db;
    font-style: italic;
    font-weight: normal;
}

/* Table Styles */
.jet-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.jet-table th,
.jet-table td {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    text-align: left;
}

.jet-table th {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #333;
}

.jet-table tbody tr:hover {
    background-color: #f5f5f5;
}

.jet-table-wrapper {
    margin: 1rem 0;
    overflow-x: auto;
}

.jet-table-container {
    padding: 1rem;
}

/* Table Responsive Styles */
@media screen and (max-width: 768px) {
    .jet-table-wrapper {
        margin: 0.5rem 0;
    }
    
    .jet-table th,
    .jet-table td {
        padding: 0.5rem;
    }
}

