.lce-offers-table {
    margin: 20px 0;
}

.lce-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lce-table th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
}

.lce-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: top;
}

.lce-table tr:hover {
    background-color: #f8f9fa;
}

.lce-table .button {
    display: inline-block;
    padding: 6px 12px;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.lce-table .button:hover {
    background: #005a87;
    color: #fff;
    text-decoration: none;
}

.lce-no-link {
    color: #6c757d;
    font-style: italic;
    font-size: 12px;
}

.lce-table small {
    color: #6c757d;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .lce-table {
        font-size: 14px;
    }
    
    .lce-table th,
    .lce-table td {
        padding: 8px 6px;
    }
}