/* General Layout and Centering Styles */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    height: 100vh; /* Full height for the viewport */
    font-family: Arial, sans-serif;
}

.layout {
    display: flex;
    height: calc(100vh - 60px); /* Full height minus the fixed header */
    box-sizing: border-box;
}

/* =======================================================
   Global Header / Branding
   Includes:
   - Master fixed header
   - Issue99 DPP logo
   - Issue02 product name and client logo
======================================================= */

/* Master Header */
.master-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1100;
    gap: 16px;
}

/* Issue99: DPP logo global header */
.header-logo {
    flex: 1 1 auto;
    min-width: 0;
}

.header-logo img {
    height: 78px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

/* Issue02: Product name next to DPP logo */
.header-product-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}

.header-product-name {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    color: #ffffff;
}

/* Issue02: Client logo and welcome text */
.header-user {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: fit-content;
}

.header-user span {
    margin-right: 15px;
}

.header-branding {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-client-logo {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* =======================================================
   Sidebar / Navigation
   Includes:
   - Fixed sidebar below global header
   - Sidebar collapse behavior
   - Issue02 Settings / Logout account links
======================================================= */

/* Sidebar */
.sidebar {
    width: 200px;
    padding: 20px;
    background-color: #333;
    color: white;
    height: calc(100vh - 60px);
    position: fixed;
    top: 60px; /* Directly below the header */
    transition: width 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.sidebar.sidebar-collapsed {
    width: 60px;
}

.sidebar a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 10px 0;
}

.sidebar-toggle {
    background-color: #444;
    color: white;
    border: none;
    padding: 8px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

/* Rotate button when sidebar is collapsed */
.sidebar.sidebar-collapsed .sidebar-toggle {
    transform: rotate(180deg);
}

/* Issue02: Sidebar account actions */
.sidebar-account-links {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.sidebar-account-links a,
.sidebar-account-links .sidebar-logout-button {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 10px 0;
    padding: 0;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.sidebar-account-links a:hover,
.sidebar-account-links .sidebar-logout-button:hover {
    text-decoration: underline;
}

.sidebar-logout-form {
    margin: 0;
}

/* Hide content inside collapsed sidebar */
.sidebar.sidebar-collapsed a,
.sidebar.sidebar-collapsed h3,
.sidebar.sidebar-collapsed .sidebar-account-links {
    display: none;
}

/* Main Content Styling */
.main-content {
    margin-left: 220px; /* Adjust for sidebar width */
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

/* Centered Content Wrapper for Home Page */
.center-content {
    text-align: center;
}

/* Option Cards */
/* Options Container */
/* Content Wrapper to manage layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px; /* Increased padding to prevent overlap with header */
}

/* Welcome Heading Styling */
.welcome-heading {
    font-size: 2em; /* Larger font size */
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px; /* Space between heading and tiles */
    color: #333; /* Darker color for visibility */
}

/* Options Container */
.options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 60px; /* Space between tiles */
    justify-content: center;
    width: 100%;
    max-width: 1000px; /* Control width of the grid */
}

/* Option Cards */
.option-card {
    width: 250px; /* Fixed width */
    height: 250px; /* Fixed height */
    color: white;
    border-radius: 15px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
}

/* Link States: Prevents default link behavior (purple visited links, underlines, etc.) */
.option-card:visited,
.option-card:hover,
.option-card:focus,
.option-card:active {
    text-decoration: none;
    color: inherit;
}

/* Hover Effect */
.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

/* Issue92 - Assets module tile icon updates */
/* Card for Assets > Employee Tile with Background Image */
.card-employee {
    background-color: #81C784;
    background-image: url("/static/images/assets/employee_icon.png");
    background-size: 120px; /* Icon size */
    background-repeat: no-repeat;
    background-position: center 40px; /* Position icon a bit higher */
    color: white;
    padding-top: 160px; /* Increased padding to shift text down */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Issue92 - Assets module tile icon updates */
/* Card for Assets > Fleet Tile with Background Image */
.card-fleet {
    background-color: #FF8A65;
    background-image: url("/static/images/assets/fleet_icon_v99.png");
    background-size: 120px; /* Icon size */
    background-repeat: no-repeat;
    background-position: center 40px; /* Position icon a bit higher */
    color: white;
    padding-top: 160px; /* Increased padding to shift text down */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional: Hover effect for interactivity */
.card-fleet:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Styling for Tile Text */
.card-fleet h3 {
    margin-top: 20px; /* Additional margin to push text down */
    font-size: 1.2em;
    font-weight: bold;
}

/* Issue92 - Assets module tile icon updates */
/* Card for Assets > Accesories Tile with Background Image */
.card-accessories {
    background-color: #FFB74D; /* Muted Teal */
    background-image: url("/static/images/assets/accesories_icon.png");
    background-size: 120px; /* Icon size */
    background-repeat: no-repeat;
    background-position: center 40px; /* Position icon a bit higher */
    color: white;
    padding-top: 160px; /* Increased padding to shift text down */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Issue92 - Assets module tile icon updates */
/* Card for Assets > Vendor Tile with Background Image */
.card-vendor {
    background-color: #4DB6AC; /* Light Orange */
    background-image: url("/static/images/assets/vendor_icon.png");
    background-size: 120px; /* Icon size */
    background-repeat: no-repeat;
    background-position: center 40px; /* Position icon a bit higher */
    color: white;
    padding-top: 160px; /* Increased padding to shift text down */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Issue93 - Operations module tile icon updates */
/* Card for Operaitons > Roster Tile with Background Image */
.card-roster {
    background-color: #81C784; /* Coral color as a base */
    background-image: url('/static/images/operations/roster_icon.png');
    background-size: 120px; /* Size of the image */
    background-repeat: no-repeat;
    background-position: center 40px; /* Positioning image above the text */
    color: white;
    padding-top: 160px; /* Padding to shift text below the image */
    text-align: center;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional: Hover effect for interactivity */
.card-roster:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Styling for Tile Text */
.card-roster h3 {
    margin-top: 20px; /* Additional margin to push text down */
    font-size: 1.2em;
    font-weight: bold;
}


/* Issue93 - Operations module tile icon updates */
/* Card for Operaitons > Runlog Tile with Background Image */
.card-runlog {
    background-color: #FF8A65; /* Teal color as a base */
    background-image: url('/static/images/operations/runlog_icon.png');
    background-size: 120px; /* Size of the image */
    background-repeat: no-repeat;
    background-position: center 40px; /* Positioning image above the text */
    color: white;
    padding-top: 160px; /* Padding to shift text below the image */
    text-align: center;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional: Hover effect for interactivity */
.card-routing:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Styling for Tile Text */
.card-routing h3 {
    margin-top: 20px; /* Additional margin to push text down */
    font-size: 1.2em;
    font-weight: bold;
}


/* Issue93 - Operations module tile icon updates */
/* Card for Operaitons > OpsLog Tile with Background Image */
.card-opslog {
    background-color: #FFB74D; /* Bright Coral for Log Out */
    background-image: url('/static/images/operations/opslog_icon.png');
    background-size: 120px; /* Size of the image */
    background-repeat: no-repeat;
    background-position: center 40px; /* Positioning image above the text */
    color: white;
    padding-top: 160px; /* Padding to shift text below the image */
    text-align: center;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Optional: Hover effect for interactivity */
.card-signout:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Styling for Tile Text */
.card-signout h3 {
    margin-top: 20px; /* Additional margin to push text down */
    font-size: 1.2em;
    font-weight: bold;
}


.card-tbd {
    background-color: #FFB74D; /* Orange */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
    }
}

/* Full-Page Scroll Container */
.form-page-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 40px;
    background-color: #f9f9f9;
}

/* Styled Form Container */
.styled-form-container {
    width: 90%; /* Increased width for better use of space */
    max-width: 1000px; /* Wider form for large screens */
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    overflow: visible; /* Ensure no inner scroll */
}

/* Form Title Styling */
.styled-form-container h2 {
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Two-Column Grid for Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 20px; /* Space between fields */
}

/* Full-Width Row for Notes */
.full-width {
    grid-column: span 2; /* Spans across both columns */
}

/* Individual Form Field Styling */
.form-row {
    display: flex;
    flex-direction: column;
}

.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px; /* Increased padding for spacious look */
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Button Row Styling */
.button-row {
    grid-column: span 2; /* Makes the button row full width */
    display: flex;
    justify-content: flex-end; /* Aligns buttons to the right */
    gap: 10px; /* Space between Save and Cancel buttons */
}

.button-row .btn {
    width: auto; /* Ensures buttons fit content */
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
}

/* Success Button Styling */
.styled-form-container .btn-success {
    background-color: #28a745;
    border: none;
}

.styled-form-container .btn-success:hover {
    background-color: #218838;
}

/* Secondary Button Styling */
.styled-form-container .btn-secondary {
    background-color: #6c757d;
    border: none;
}

.styled-form-container .btn-secondary:hover {
    background-color: #5a6268;
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr; /* Switch to single column on smaller screens */
    }
}
/* Full-Page Scroll Container */
.form-page-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
    min-height: 100vh;
    padding-bottom: 40px;
    background-color: #f9f9f9;
}

/* Styled Form Container */
.styled-form-container {
    width: 95%; /* Expanded width */
    max-width: 1200px; /* Set a larger max-width */
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    overflow: visible; /* Ensure no inner scroll */
}

/* Form Title Styling */
.styled-form-container h2 {
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Three-Column Grid for Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three equal columns */
    gap: 20px; /* Space between fields */
}

/* Full-Width Row for Notes */
.full-width {
    grid-column: span 3; /* Spans across all three columns */
}

/* Individual Form Field Styling */
.form-row {
    display: flex;
    flex-direction: column;
}

.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px; /* Increased padding for spacious look */
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Button Row Styling */
.button-row {
    grid-column: span 3; /* Makes the button row full width */
    display: flex;
    justify-content: flex-end; /* Aligns buttons to the right */
    gap: 10px; /* Space between Save and Cancel buttons */
}

.button-row .btn {
    width: auto; /* Ensures buttons fit content */
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
}

/* Success Button Styling */
.styled-form-container .btn-success {
    background-color: #28a745;
    border: none;
}

.styled-form-container .btn-success:hover {
    background-color: #218838;
}

/* Secondary Button Styling */
.styled-form-container .btn-secondary {
    background-color: #6c757d;
    border: none;
}

.styled-form-container .btn-secondary:hover {
    background-color: #5a6268;
}

/* General Styling for Form Fields */
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 10px; /* Adjusted padding for consistency */
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #fff; /* White background for visibility */
    color: #333; /* Dark text color for readability */
    font-size: 1em;
    line-height: 1.6; /* Slightly increased line-height for better visibility */
    box-sizing: border-box; /* Ensures padding is included in the width */
}

/* Specific Styling for Select (Dropdown) Elements */
.form-row select {
    appearance: none; /* Remove default arrow for consistency */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 24px; /* Space for custom dropdown arrow */
    padding-top: 8px; /* Adjusted top padding to prevent clipping */
    padding-bottom: 8px; /* Adjusted bottom padding to prevent clipping */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Position custom arrow */
    background-size: 12px;
}

/* Focus and Hover Styling */
.form-row select:focus,
.form-row input:focus {
    border-color: #80bdff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Login Page Styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Issue0+1 - DPP logo branding for login page */
.login-brand-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
}

/* Issue0+1 - DPP logo branding for login page */
.login-logo {
    width: 190px;
    max-width: 220px;
    height: auto;
    display: block;
}

.login-box {
    width: 100%;
    max-width: 420px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.login-box h2 {
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Group Styling */
.login-box .form-group label {
    font-weight: bold;
    color: #555;
}

.login-box .form-group input {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

/* Button Styling */
.login-box .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.login-box .btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-container {
        padding: 16px;
    }

    .login-logo {
        width: 150px;
        max-width: 180px;
    }

    .login-box {
        max-width: 100%;
        padding: 24px 20px;
    }
}

/* Error Messages */
.messages p {
    color: #d9534f; /* Red color for error messages */
    text-align: center;
    font-weight: bold;
}
label span {
    color: red;
    font-weight: bold;
}
/* Style for Vehicle List Table */

.vehicle-list-container {
    max-height: 400px; /* Reduced height for better visibility of buttons */
    overflow-y: auto; /* Enables vertical scrolling for the table body */
    overflow-x: auto; /* Enables horizontal scrolling */
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-top: 20px; /* Space between buttons and table */
}

.vehicle-list-table {
    font-size: 0.85rem; /* Slightly increased font size for better readability */
    border-collapse: collapse;
    text-align: center;
    width: 100%;
    table-layout: auto;
    position: relative; /* Added for sticky header support */
}

.vehicle-list-table th {
    background-color: #343a40;
    color: white;
    white-space: nowrap;
    padding: 10px;
    font-size: 0.9rem; /* Slightly larger font for the header */
    text-align: center;
    position: sticky; /* Makes the header fixed while scrolling */
    top: 0; /* Sticks to the top of the container */
    z-index: 2; /* Ensures it stays above table rows */
}

.vehicle-list-table td {
    padding: 10px;
    vertical-align: middle;
}

.action-buttons {
    display: flex; /* Align buttons horizontally */
    gap: 5px; /* Add spacing between buttons */
    justify-content: center; /* Center buttons within the cell */
    align-items: center; /* Vertically align buttons */
    white-space: nowrap; /* Prevent text wrapping */
}

.pagination {
    margin-top: 10px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Action Buttons - Ensure they are aligned in a row */
.vehicle-list-table .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
    margin: 2px;
    display: inline-block;
}

.vehicle-list-table .btn-sm {
    font-size: 0.8rem;
    padding: 4px 10px;
}

/* Optional: Add hover effect for table rows */
.vehicle-list-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vehicle-list-table th, .vehicle-list-table td {
        font-size: 0.7rem;
    }
}
.fixed-add-button {
    position: relative;
    margin-left: 15px; /* Space from the dropdown */
}

.vehicle-list-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    text-align: left; /* Align text to the left */
}

.d-flex.justify-content-between {
    align-items: center; /* Ensure alignment of title and button */
}
.btn-success i {
    margin-right: 5px; /* Space between icon and text */
}

.d-flex.justify-content-between .btn-success {
    display: flex;
    align-items: center; /* Align icon with button text */
    margin-right: 10px; /* Space between Export and Add buttons */
}

/* General Styling for Select (Dropdown) Elements */
select {
    width: 100%;
    padding: 12px; /* Adjust padding to ensure text fits */
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem; /* Ensure consistent font size */
    line-height: 1.6; /* Adjust line-height to prevent clipping */
    appearance: none; /* Remove browser-specific styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center; /* Align dropdown arrow */
    background-size: 12px;
}

/* Fix for selected value visibility */
select option {
    padding: 10px; /* Add padding for dropdown options */
    line-height: 1.6; /* Ensure line height matches select field */
}

/* Focus and hover styling for better interaction */
select:focus,
select:hover {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

/* Responsive adjustments for select elements */
@media (max-width: 768px) {
    select {
        font-size: 0.9rem; /* Slightly smaller font size for mobile */
        padding: 10px; /* Adjust padding for smaller screens */
    }
}
select.form-control {
    
    height: 40px; /* Adjust height for consistency */
    line-height: 1.5; /* Ensure vertical alignment */
    background-color: #fff; /* Keep default background */
}
@media (max-width: 768px) {
    /* Adjust the container for mobile */
    .options-container {
        grid-template-columns: 1fr; /* Single column for tiles */
        gap: 15px; /* Reduced spacing between tiles */
        padding: 10px; /* Add padding to the container */
    }

    /* Adjust tiles for smaller screens */
    .option-card {
        width: 90%; /* Take up 90% of the screen width */
        height: auto; /* Adjust height dynamically */
        font-size: 1.2em; /* Slightly smaller font size */
        padding: 15px; /* Add padding inside the tile */
        margin: 0 auto; /* Center-align the tile */
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); /* Softer shadow for smaller screens */
    }

    /* Adjust tile background icon for smaller tiles */
    .card-fleet, .card-employee, .card-accessories, .card-vendor {
        background-size: 60px; /* Smaller background icon */
        background-position: center 10px; /* Adjust position of the icon */
    }

    /* Reduce text margin */
    .option-card h3 {
        margin-top: 10px; /* Reduce margin above text */
        font-size: 1em; /* Smaller text for compact layout */
    }

    /* Add space between the last tile and the bottom of the screen */
    .options-container:last-child {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    /* Adjust the sidebar for smaller screens */
    .sidebar {
        width: 100%; /* Sidebar takes full width */
        height: auto; /* Adjust height dynamically */
        position: relative; /* Remove fixed positioning */
        padding: 10px; /* Add padding for better spacing */
        background-color: #333; /* Keep sidebar background */
        z-index: 1000; /* Ensure it appears behind other content when collapsed */
    }

    /* Ensure links in the sidebar stack vertically */
    .sidebar a {
        display: block;
        margin: 10px 0; /* Add space between links */
        font-size: 1rem; /* Adjust font size for readability */
    }

    .sidebar-account-links {
        position: static;
        margin-top: 20px;
    }

    /* Adjust the main content */
    .main-content {
        margin-left: 0; /* Remove margin caused by the desktop sidebar */
        padding: 15px; /* Add padding for better spacing */
    }

    /* Options Container Adjustments */
    .options-container {
        margin-top: 20px; /* Add spacing between the sidebar and tiles */
    }
}
/* Style for smaller buttons */
.btn-sm {
    padding: 5px 10px;
    font-size: 0.875rem;
    border-radius: 4px;
}

/* Right-align the Next button */
.button-row .btn-primary {
    margin-left: auto; /* Align Next button to the right */
    padding: 5px 15px; /* Smaller button size for Next */
    font-size: 0.875rem;
}

.button-row .btn-success, .button-row .btn-secondary {
    width: 45%; /* Save and Cancel take equal space */
    text-align: center;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
}

/* Next button alignment */
.mb-3 {
    margin-bottom: 1rem !important;
}

.d-flex.justify-content-end {
    display: flex;
    justify-content: flex-end;
}

/* Save and Cancel buttons styling */
.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.button-row .btn-success {
    width: 100%;
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    margin-right: 15px; /* Optional margin for spacing */
    border-radius: 5px;
}

.button-row .btn-secondary {
    width: 100%;
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
}
/* Reduce size of Next button */
.btn-sm {
    font-size: 0.875rem;
    padding: 6px 12px;
}

/* Ensure Next button is aligned properly */
.d-flex.justify-content-end {
    margin-bottom: 10px; /* Space below Next button */
}

/* Align the NEXT button to the right on its own row */
.button-row .btn-next {
    float: right;
    margin-bottom: 10px;
    padding: 6px 12px; /* Adjust padding for a smaller size */
    font-size: 0.875rem; /* Smaller font size */
    border-radius: 5px;
}

/* Submit button styling (full width) */
.button-row .btn-submit,
.button-row .btn-cancel {
    width: 100%; /* Ensure both buttons are the same width */
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    border-radius: 5px;
}

/* Reduce the gap between Submit and Cancel buttons */
.button-row .btn-submit {
    margin-bottom: 5px; /* Small gap below Submit button */
}

.export-add-buttons-container {
    position: sticky; /* Fixes the position */
    top: 0; /* Sticks to the top of the page */
    z-index: 10; /* Ensures it stays above other elements */
    background-color: #fff; /* Optional: matches the background color */
    padding: 10px; /* Adds padding for a cleaner look */
    border-bottom: 1px solid #ccc; /* Optional: adds a subtle border */
}


/* Flex-wrap for responsive pagination and controls */
.flex-wrap {
    flex-wrap: wrap;
}

/* Margin adjustments for dropdown and pagination */
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.sticky-header-container {
    position: sticky;
    top: 70px; /* Adjust based on header height, e.g., navbar */
    z-index: 10;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for clarity */
    border-bottom: 1px solid #ddd;
}
.fixed-header-table {
    max-height: 400px; /* Set a fixed height for the table content */
    overflow-y: auto; /* Enable vertical scrolling */
    position: relative; /* Positioning context for header */
}


.fixed-header-table thead th {
    position: sticky;
    top: 0;
    background-color: #000000; /* Set header background color to black */
    color: #ffffff; /* Set header text color to white */
    z-index: 5; /* Ensure header stays above content */
    font-weight: bold; /* Make header text bold */
    text-align: center; /* Center align header text */
    border-bottom: 2px solid #444; /* Subtle bottom border for separation */
    padding: 10px; /* Add spacing for readability */
}

/* Table Body Styling */
.fixed-header-table tbody td {
    color: #000000; /* Keep body text black */
    background-color: #ffffff; /* Ensure body cells have a white background */
    padding: 8px; /* Add consistent spacing */
    border: 1px solid #ddd; /* Match the border styling */
    vertical-align: middle; /* Align text vertically in the middle */
}


.fixed-header-table table {
    width: 100%; /* Ensures the table spans the full width of the container */
    border-collapse: collapse;
}

.sticky-header-container .d-flex {
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 10px; /* Adds spacing between elements */
}

.search-bar-container form {
    display: flex;
    gap: 5px; /* Adds space between input and button */
}

/* Add margins for better spacing */
.search-bar-container {
    margin-top: 10px;
}

select {
    height: auto;
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
}


button {
    width: auto; /* Allow the button to adjust based on text */
    padding: 10px 20px; /* Add sufficient padding for readability */
    font-size: 1rem; /* Set a consistent and readable font size */
    white-space: nowrap; /* Prevent text wrapping */
    text-align: center;
    border-radius: 4px; /* Optional: Add rounded corners for modern styling */
    transition: all 0.2s ease; /* Add smooth hover effects */
}


.btn-success {
    background-color: #28a745; /* Green background */
    color: white; /* White text */
    border: 1px solid #28a745; /* Green border */
}

.btn-success:hover {
    background-color: #218838; /* Darker green on hover */
    border-color: #1e7e34;
}

.btn-warning {
    background-color: #ffc107; /* Yellow background */
    color: #212529; /* Dark text for contrast */
    border: 1px solid #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800; /* Darker yellow on hover */
    border-color: #d39e00;
}

.d-flex.justify-content-end button {
    margin-left: 10px; /* Ensure proper spacing between the buttons */
}
.existing-slots {
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
}

.slot-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.slot-card h6 {
    margin: 0;
    font-size: 16px;
}

.slot-card .actions button {
    margin-left: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 8px 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: #fff;
    background-color: #007bff;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

.btn:active {
    background-color: #004085;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%; /* Allow the container to take full width */
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


.form-group {
    margin-bottom: 15px;
}


.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}


h1 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px; /* Add space above the title */
}

/* Main Content Wrapper */
.main-content-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


/* Modal Adjustments */
.modal-content {
    max-height: 100vh; /* Ensure modal fits within the screen */
    overflow-y: auto; /* Add scroll if content exceeds height */
    width: 80%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Modal Header */
.modal-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Employee List */
.employee-list {
    max-height: 300px; /* Increased height for better scrollable view */
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
    margin-top: 10px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

/* 🌟 Export Button */
.btn-success {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #218838;
}

/* 🌟 Handsontable (Table) Styling */
.handsontable {
    width: 100%;
}

/* 🌟 Table Header Styling */
.handsontable thead th {
    background-color: #003366 !important; /* Dark Blue */
    color: white !important;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #ccc !important;
}

/* 🌟 Alternate Row Colors (✅ Fixed) */
.handsontable tbody tr:nth-child(odd) td {
    background-color: #ffffff !important; /* White */
}

.handsontable tbody tr:nth-child(even) td {
    background-color: #f2f2f2 !important; /* Light Gray */
}

/* 🌟 Table Borders */
.handsontable td,
.handsontable th {
    border: 1px solid #ddd !important;
}

.handsontable thead th,
.handsontable td {
    text-align: left !important;
    padding-left: 10px; /* Optional: Adds slight padding for better spacing */
}

/* 🌟 Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

/* 🌟 Pagination Buttons */
.page-indicator {
    font-weight: bold;
    font-size: 16px;
}

.btn-dark {
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #333;
    color: white;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: #555;
}

/* 🌟 Pagination Buttons Styling */
.dataTables_paginate {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dataTables_paginate a {
    padding: 8px 15px;
    border-radius: 4px;
    background-color: #f1f1f1;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #ccc;
}

.dataTables_paginate .current {
    background-color: #007bff;
    color: #fff;
}

.dataTables_paginate a:hover {
    background-color: #0056b3;
    color: white;
}

/* 🌟 Responsive Adjustments */
@media (max-width: 768px) {
    .handsontable thead th {
        font-size: 11px; /* ✅ Smaller text on mobile */
        padding: 6px; /* ✅ Compact padding */
    }

    .handsontable-container {
        max-height: calc(100vh - 180px); /* ✅ Prevents overlapping on mobile */
    }
}


/* No Records Message */
.no-records-message {
    font-size: 16px;
    font-weight: bold;
    color: #d9534f;
    text-align: center;
    padding: 10px;
}

.dropdown-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 5px; /* Ensures text does not touch the dropdown */
}

.cell-text {
    flex-grow: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.dropdown-icon {
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    color: #ffc107;
    padding-left: 6px;
    padding-right: 2px;
    line-height: 1;
}

.no-data-message {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: red;
    margin-top: 20px;
}

.route-heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #003366; /* Dark blue for consistency */
}

/* 🌟 Ensure it adapts for smaller screens */

.accessories-form-row {
    display: flex;
    flex-direction: column;
    min-height: 75px;  /* Ensures consistent spacing even without validation errors */
    margin-bottom: 10px;
}

.accessories-form-row .form-error {
    color: red;
    margin-top: 4px;
    font-size: 12px;
}

.accessories-form-row .form-label {
    margin-bottom: 5px;
}

.rescue-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    width: 400px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .rescue-modal h4 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }
  
  .modal-form-group {
    margin-bottom: 20px;
  }
  
  .modal-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #444;
  }
  
  .modal-select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background-color: #f9f9f9;
  }
  
  #rescueSubmitBtn {
    width: 100%;
    padding: 10px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  #rescueSubmitBtn:hover {
    background-color: #0056b3;
  }
  
  .rescue-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
  }
  
  .rescue-modal-close:hover {
    color: #333;
  }
/* 🔶 Final override with extra specificity */
.handsontable .htCore tr td.rescue-highlight {
    background-color: #fff9c4 !important;
}

#saveAllBtn {
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px 8px 16px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

#saveAllBtn:hover {
    transform: translateY(-2px);
    background-color: #0b5ed7;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

#saveAllBtn .save-icon {
    font-size: 16px;
}
.toast-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 10000;
    min-width: 250px;
    max-width: 400px;
    padding: 0;
}

.toast-message {
    padding: 12px 18px;
    font-size: 14px;
    color: white;
    background-color: #198754; /* Success green */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 3s ease forwards;
}

.toast-message.error {
    background-color: #dc3545; /* Bootstrap red */
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}


.print-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.print-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 70%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.print-modal-content h3 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 20px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.print-modal-actions {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-secondary {
  background-color: #ccc;
  color: #333;
}

.handsontable .htCore tr td.ridealong-green {
    background-color: #c8e6c9 !important;  /* light green */
}

/* Issue115: Completed Attendance row highlight - match Employee active row standard */
.handsontable .htCore tr td.attendance-completed-row,
.handsontable .htCore tr td.attendance-completed-row.current,
.handsontable .htCore tr td.attendance-completed-row.area,
.handsontable .htCore tr td.attendance-completed-row.highlight {
    background-color: #eaf7ea !important;
    color: #333 !important;
    border: 1px solid #d9d9d9 !important;
}

/* Issue115: Keep custom Attendance dropdown cell contents transparent over completed row color */
.handsontable .htCore tr td.attendance-completed-row .dropdown-cell,
.handsontable .htCore tr td.attendance-completed-row .cell-text,
.handsontable .htCore tr td.attendance-completed-row .dropdown-icon {
    background-color: transparent !important;
    color: #333 !important;
}

/* Issue116: Completed Sign-Out row highlight - match Employee active row standard */
.handsontable .htCore tr td.signout-completed-row,
.handsontable .htCore tr td.signout-completed-row.current,
.handsontable .htCore tr td.signout-completed-row.area,
.handsontable .htCore tr td.signout-completed-row.highlight {
    background-color: #eaf7ea !important;
    color: #333 !important;
    border: 1px solid #d9d9d9 !important;
}

/* Issue116: Keep custom Sign-Out dropdown cell contents transparent over completed row color */
.handsontable .htCore tr td.signout-completed-row .dropdown-cell,
.handsontable .htCore tr td.signout-completed-row .cell-text,
.handsontable .htCore tr td.signout-completed-row .dropdown-icon {
    background-color: transparent !important;
    color: #333 !important;
}

/* Summary fixed bottom-left, aligned with table container */
.summary-footer {
  position: fixed;
  bottom: 20px;
  left: 250px; /* adjust if your sidebar/menu width changes */
  z-index: 9998;
}

/* Summary inline layout */
.summary-inline {
  display: flex;
  gap: 12px;
  font-weight: 600;
}

.summary-inline .pill {
  background: #f8f9fa;              /* soft gray background */
  border: 1px solid #d1d5db;        /* subtle border */
  border-radius: 20px;              /* pill shape */
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #003366;                   /* matches your header dark blue */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* soft shadow for depth */
  transition: background 0.2s, color 0.2s;
}

.summary-inline .pill:hover {
  background: #003366;   /* dark blue on hover */
  color: #fff;           /* white text */
  cursor: default;
}


/* Responsive sidebar collapse handling */
@media (max-width: 1100px) {
  .summary-footer { left: 160px; }
}

@media (max-width: 900px) {
  .summary-footer { left: 100px; }
}

@media (max-width: 768px) {
  .summary-footer { left: 40px; }
}

.icon-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 4px;
}
.icon-btn.danger { filter: grayscale(0.2); transition: transform .1s, filter .15s; }
.icon-btn.danger:hover { transform: scale(1.1); filter: none; }

/* ---------- FORCE Address to span full row width ---------- */
.form-grid .form-row textarea[name="address"] {
  flex: 1 1 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  box-sizing: border-box;
  margin-right: 0 !important;
}

/* also ensure its container (form-row) itself takes full width */
.form-grid .form-row:has(textarea[name="address"]) {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  display: block !important;
}

/* Optional: align label above textarea */
.form-grid .form-row label[for="id_address"] {
  display: block !important;
  width: 100% !important;
  margin-bottom: 4px;
}


/* Issue71 - Operations module tile icon updates */
/* Card for Operaitons > PerfLog Tile with Background Image */
.card-perflog {
    background-color: #4DB6AC;
    background-image: url('/static/images/operations/perflog_icon.png');
    background-size: 120px; /* Size of the image */
    background-repeat: no-repeat;
    background-position: center 40px; /* Positioning image above the text */
    color: white;
    padding-top: 160px; /* Padding to shift text below the image */
    text-align: center;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* =======================================================
   DPP global main-content width containment PoC.
   Keeps the fixed-sidebar viewport containment fix without forcing
   module home pages to use work-page alignment.
======================================================= */
@media (min-width: 769px) {
    .layout .main-content {
        width: calc(100vw - 220px) !important;
        max-width: calc(100vw - 220px) !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .layout .main-content:has(.dpp-work-page) {
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .sidebar.sidebar-collapsed ~ .main-content,
    .sidebar.sidebar-collapsed + .main-content {
        width: calc(100vw - 80px) !important;
        max-width: calc(100vw - 80px) !important;
        margin-left: 80px !important;
    }
}
