/* Global Styles */
html, body {
    font-size: 16px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #F5F5F5; /* Light background for readability */
}

.btn:focus, .btn:active:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn:hover, .btn:focus {
    background-color: #00BFFF; /* Lighter blue on hover for better readability */
    color: #FFFFFF; /* White text */
}

/* Collapse transition settings */
.collapse {
    transition: none !important; /* Remove collapse transition entirely */
}

.btn {
    background-color: #007FFF; /* Electric Blue for buttons */
    color: #FFFFFF; /* White text for contrast */
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Specific page/component styles (e.g., cards, buttons, form elements) can go here */

/* Utility Classes */
.mt-2 {
    margin-top: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}
/* Enhance table appearance */
table.bordered th, table.bordered td {
    border: 1px solid #ddd; /* Add light borders around cells */
    padding: 8px; /* Add padding for better spacing */
}

/* Table header styling */
table.bordered thead {
    background-color: #f5f5f5; /* Light grey header */
    border-bottom: 2px solid #bdbdbd; /* Slightly darker border for header */
}

/* Add zebra stripes */
table.bordered tbody tr:nth-child(odd) {
    background-color: #f9f9f9; /* Light grey for odd rows */
}

table.bordered tbody tr:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}

/* Row hover effect */
table.bordered tbody tr:hover {
    background-color: #e0f7fa; /* Light blue on hover */
}

/* Make table responsive for smaller screens */
table.responsive-table th,
table.responsive-table td {
    white-space: nowrap; /* Prevent text wrapping */
}

/* Button alignment and styling */
.btn-small {
    font-size: 0.875rem; /* Smaller button text */
    padding: 0 10px; /* Adjust padding */
}
#ordersTable {
    margin-bottom: 30px; /* Space between table and the button */
}

/* Make breadcrumb background transparent */
.breadcrumb-nav .nav-wrapper {
    background-color: transparent;
    box-shadow: none; /* Remove the shadow if present */
    padding: 0; /* Remove extra padding */
}
nav {
    color: #424242;
    background-color: transparent;
    box-shadow: none; /* Remove the shadow if present */
    padding: 0; /* Remove extra padding */
}
/* Breadcrumb link styles */
.breadcrumb {
    color: #424242 !important; /* Use a neutral text color */
    font-weight: normal !important; /* Default weight for links */
    text-decoration: none !important; /* Remove underline */
}
    .breadcrumb:before {
        color: #424242 !important;
    }

    /* Breadcrumb active page (last child) */
    .breadcrumb:last-child {
        font-weight: bold !important; /* Make active page bold */
        color: #000 !important; /* Optional: darker color for emphasis */
    }

    /* Breadcrumb hover effect */
    .breadcrumb:hover {
        text-decoration: underline !important; /* Optional: underline on hover */
    }
