.search-container {
    margin-bottom: 10px;
}

.search-input {
    padding: 5px 8px;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid #999;
    background-color: #fff;
    width: 100%;
    max-width: 300px;
}

.search-input:focus {
    outline: none;
    border-color: #333;
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.coffee-table {
    width: 100%;
    border-collapse: collapse;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 20px;
}

.coffee-table thead {
    background-color: #f5f5f5;
}

.coffee-table th {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #333;
    font-weight: normal;
    cursor: pointer;
    user-select: none;
}

.coffee-table th:hover {
    background-color: #e8e8e8;
}

.coffee-table th::after {
    content: ' \2195';
    opacity: 0.3;
    font-size: 0.8em;
}

.coffee-table th.sort-asc::after {
    content: ' \2191';
    opacity: 1;
}

.coffee-table th.sort-desc::after {
    content: ' \2193';
    opacity: 1;
}

.coffee-table tbody tr {
    border-bottom: 1px solid #ddd;
}

.coffee-table tbody tr:hover {
    background-color: #f9f9f9;
}

.coffee-table td {
    padding: 6px 8px;
}

.no-results {
    text-align: center;
    padding: 15px;
    color: #999;
    font-style: italic;
}

.error {
    padding: 15px;
    background-color: #ffebee;
    border: 1px solid #ef5350;
    color: #c62828;
}

@media (max-width: 768px) {
    .coffee-table {
        font-size: 12px;
    }

    .coffee-table th,
    .coffee-table td {
        padding: 5px 4px;
    }

    .search-input {
        max-width: 100%;
    }
}

