/* Styling for the Orders Table */
.orders-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.orders-table tr {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.orders-table tr:hover {
    transform: scale(1.01);
}

.orders-table td, .orders-table th {
    padding: 15px;
    vertical-align: middle;
}

.btn-download {
    background-color: #007bff;
    color: white;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.85rem;
    text-decoration: none;
}

/* This handles the 'Underneath' overlap */
.page-title {
    /* 1. Push the text down so it clears the navbar */
    padding-top: 200px !important; 
    padding-bottom: 80px !important;
    
    /* 2. Ensure the blue background starts at the very top */
    margin-top: 0 !important;
    
    /* 3. Visual styling */
    background-color: #0056b3; /* KSSFCL Brand Blue */
    width: 100%;
    display: block;
}

/* Make the text pop */
.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.page-title .lead {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    padding-top: 40px;
    background-color: #f8f9fa; /* Light grey background for the table area */
}