/* Orders List Styles */


.OLorder-container {

    padding: 24px;
    margin: 20px;
}

.OLheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e5e7eb;
}

.OLorder-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.OLorder-header h2 {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    font-weight: 400;
}

.OLview-more-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.OLview-more-text {
    font-size: 16px;
    color: #3b82f6;
    margin: 0;
    font-weight: 500;
}

.OLview-more {
    color: #3b82f6;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.OLview-more:hover {
    color: #1d4ed8;
}

.OLtable-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.OLorder-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.OLorder-table thead {
    background-color: #a87a47;
}

.OLorder-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: #f4f1ee;
    border-bottom: 2px solid #e5e7eb;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.OLorder-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #f3f4f6;
    color: #704013;
    font-size: 14px;
}

.OLorder-table tbody tr:hover {
    background-color: #efe0cf;
    transition: background-color 0.5s ease;
}

.OLorder-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Styles */
.OLstatus {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.OLstatus.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.OLstatus.pending {
    background-color: #fef3c7;
    color: #922b0e;
    border: 1px solid #fde68a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ADdashboardcontainer {
        margin-left: 0;
        padding: 16px;
    }
    
    .OLheader {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .OLorder-table th,
    .OLorder-table td {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .OLorder-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .OLorder-container {
        padding: 16px;
    }
    
    .OLorder-table th,
    .OLorder-table td {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .OLorder-header h1 {
        font-size: 20px;
    }
}
