.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table thead {
    background-color: #f5f5f5;
}

.orders-table th {
    padding: 15px 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    color: #333;
    border-bottom: none;
}

.orders-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #dee2e6;
}

.order-link {
    color: #000;
    text-decoration: none;
}

.order-link:hover {
    text-decoration: underline;
}

.btn-view {
    background-color: #222;
    color: #fff;
    border-radius: 0;
    padding: 8px 25px;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.btn-view:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .orders-table th,
    .orders-table td {
        padding: 15px 10px;
    }
    
    .btn-view {
        padding: 6px 15px;
    }
}