body {
    font-family: Arial, 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

a, a:visited {
	color: #D61A3C;
}
a:hover {
	color: #084E98;
}

.c-white {
	color: #FFF;
}
.c-blue a, .c-blue a:visited,
.c-blue {
	color: #0056A5;
}
.b-blue {
	background-color: #0056A5;
}
.c-red {
	color: #D41145;
}
.b-red {
	background-color: #D41145;
}
.b-light-blue {
	background-color: #6580B1;
}
.b-light-blue-30 {
	background-color: #0351A64D;
}
.b-light-red {
	background-color: #F2B8C7;
}

.hamburger-menu {
    cursor: pointer;
    width: 30px;
    height: auto;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #0056A5;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}


.sidenav span,
.sidenav a {
    background-color: #60580B1; /* Set background color */
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 18px;
    text-align: left;
    color: #FFFFFF;
    display: block;
    transition: 0.3s;
    border-bottom: 1px solid #FFFFFF; /* Add separator */
}
.sidenav a.sub-item {
	padding-left: 52px;
}

.sidenav a:hover {
    background-color: #D41145; /* Set hover color */
    color: #f1f1f1;
}


.sidenav .closebtn {
    position: absolute;
    top: 62px;  /* Adjust the top value as needed */
    left: 0;    /* Align the X all the way to the left */
    font-size: 36px;
    padding-left: 18px; /* Add some padding so it's not completely on the edge */
    border-bottom: none !important;
}


.sidenav-titlex {
    margin-left: 50px; /* Adjust this to move the "Admin Navigation" text away from the X */
    display: inline-block;
    color: #FFFFFF; /* Ensure the color matches the intended design */
    font-weight: bold;
}

.sidenav-titlex a:hover {
    color: #f1f1f1;
    background-color: inherit; /* Removes the red background on hover */
}

.freighprice {
    border-top: 1px solid #FFFFFF; /* Add separator */
}

.sidenav-title {
    font-weight: bold;
    color: #ffffff;
    margin-left: 32px;
    margin-bottom: 20px;
    font-size: 20px;
}

.login-container {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.dashboard-container {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    /*max-width: 1200px;
    width: 90%;*/
    margin: 20px auto;
    clear: both; /* Ensures no floating issues affect the container */
	/*min-width: -webkit-fill-available;*/
	min-width: 90vw;
}

.dashboard-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 15px;
    margin-bottom: 10px;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
}

.dashboard-icon {
    width: 50px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px; /* Space between icon and text */
    margin-right: 10px; /* Space between icon and text */
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #D61A3C;
    padding: 15px;
    color: #FFFFFF;
}

.header img {
    max-height: 50px;
    width: auto;
}

.inside-container {
    width: 100%;
    box-sizing: border-box;
}


.app-list-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.user-table th, .user-table td {
    padding: 15px;
    text-align: left;
}

.user-table th {
    background-color: #0056A5;
    color: #ffffff;
}

.user-row.even-row {
    background-color: #F2B8C7;
}

.user-row.odd-row {
    background-color: #EAEAEA;
}

.edit-button {
    background: none;
    border: none;
    cursor: pointer;
}

.edit-button img {
    width: 20px;
    height: 20px;
}

.add-user-button {
    background-color: #D61A3C;
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

.add-user-button:hover {
    background-color: #B71533;
}

.app-logo {
    max-height: 50px;
}

.add-app-button {
    background-color: #D61A3C;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;

}

a .profile-button, .add-app-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
        }

.add-app-button:hover {
    background-color: #B71533;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.app-card {
    background-color: #FFFFFF;
    border: 2px solid #0056A5;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.app-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.app-card p {
    font-size: 18px;
    font-weight: 500;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.menu-item {
    background-color: #D61A3C;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 120px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.05);
}

.menu-item a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.icon {
    font-size: 32px;
    margin-bottom: 10px;
}

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

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-button {
    background-color: #D61A3C;
    color: #ffffff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}

.login-button:hover {
    background-color: #B71533;
}

.forgot-password {
    color: #0056b3;
    text-decoration: none;
    margin-top: 10px;
    display: block;
}

.forgot-password:hover {
    text-decoration: underline;
}


.rectangle {
    position: absolute;
    width: 1767px;
    height: 69px;
    left: 76px;
    background: #EAEAEA;
}

.rectangle:nth-child(odd) {
    background: #F2B8C7;
}

.text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    position: absolute;
}

.text.header {
    color: #FFFFFF;
    font-weight: 700;
}

/* Make sure the form is responsive */
@media (max-width: 480px) {
    .login-container {
        padding: 15px;
    }
    .dashboard-container {
        padding: 15px;
    }
    .header, .rectangle {
        width: 100%;
        left: 0;
    }
}


        .filter-button {
            background-color: #D61A3C;
            color: #ffffff;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin: 20px 0;
        }

        .filter-button:hover {
            background-color: #B71533;
        }

        .order-table-navigation {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .navigation-button {
            background-color: #0056A5;
            color: #ffffff;
            padding: 10px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin: 0 10px;
        }

        .navigation-button:hover {
            background-color: #004494;
        }

        .freight-table,
        .order-table {
            width: 100%;
            border-collapse: collapse;
           /* margin-top: 20px; */
        }

        .freight-table th, .freight-table td,
        .order-table th, .order-table td {
            padding: 15px;
            text-align: left;
        }

        .freight-table th,
        .order-table th {
            background-color: #0056A5;
            color: #ffffff;
        }

        .order-row.even-row {
            background-color: #F2B8C7;
        }

        .order-row.odd-row {
            background-color: #EAEAEA;
        }

        .add-customer-button {
            background-color: #D61A3C;
            color: #ffffff;
            padding: 15px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
			float: left;
        }

        .add-customer-button:hover {
            background-color: #B71533;
        }

        .cancel-driver-list-button,
        .save-driver-list-button,
        .edit-driver-list-button,
        .add-truck-button {
            background-color: #D61A3C;
            color: #ffffff;
            padding: 15px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 20px;
        }
        .cancel-driver-list-button {
			margin-left:1.5rem;
		}

        .edit-driver-list-button:hover,
        .add-truck-button:hover {
            background-color: #B71533;
        }

        .driver-card {
            background-color: #0056A5;
            color: #ffffff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
        }

        .driver-card p {
            font-size: 20px;
            font-weight: bold;
        }

        .driver-board-navigation {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .navigation-button {
            background-color: #0056A5;
            color: #ffffff;
            padding: 10px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin: 0 10px;
        }

        .navigation-button:hover {
            background-color: #004494;
        }

        .profile-picture {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 10px auto 20px;
        }

        .profile-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .profile-form input,
        .profile-form select {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            width: 100%;
             background: #0351A64D;
        }

        .update-button {
            background-color: #D61A3C;
            color: #ffffff;
            padding: 10px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }

        .update-button:hover {
            background-color: #B71533;
        }

        .footer-container {
    text-align: left;
    max-width: 1200px;
    width: 90%;
    margin: 2px auto;
    clear: both; /* Ensures no floating issues affect the container */
}

         .footer {
            color: #0056A5;
            text-align: center;
            padding: 10px;
            margin-top: 20px;
        }

        .footer a {
            color: #D61A3C;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

.danger {
	color: red !important;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.config-swp-nav {
	display: flex;
	justify-content: left;
	margin-bottom: 20px;
	width: 100%;
}
.order-table-week-navigation,
.freight-sheet-week-navigation {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
}
.order-table-week-navigation .navigation-button,
.order-totals-div .navigation-button {
	margin: 0;
	width: 20%;
	background-color: #FFF;
	color: #000;
	border-radius: 0px;
	border: 1px solid #000;
}
.order-totals-div .navigation-button {
	border-radius: 8px;
	cursor: unset;
}
.orders-weekly-div {
	background-color: #D7ECFF;
	overflow-y: auto;
	max-height: calc(100vh - 335px);
	padding: 0 1.5rem 1rem 2rem;
	border-radius: 8px;
}
.small {
	font-size: small;
}
.freight-sheet-state-navigation .navigation-button.active,
.order-table-week-navigation .navigation-button.active {
	background-color: #D61A3C;
	color: #FFF;
	cursor: unset;
}
.order-table-week-navigation .navigation-button:first-child {
	border-radius: 8px 0 0 8px;
}
.order-table-week-navigation .navigation-button:last-child {
	border-radius: 0 8px 8px 0;
}

table.order-table thead th:first-child {
	border-radius: 8px 0 0 0;
}
table.order-table thead th:last-child {
	border-radius: 0 8px 0 0;
}
/*table.freight-table tbody td,*/
table.order-table tbody td {
	border-bottom: 1px solid #000;
}

.week-nav {
	display: flex;
    align-items: center;
    justify-content: space-between;
	width: 50%;
}
.week-nav .nav-left, .week-nav .nav-right {
	height: 2rem;
    cursor: pointer;
	color: #0056A5;
}
.week-nav .nav-left.disabled, .week-nav .nav-right.disabled {
	color: #aaa;
	cursor: unset;
}
.week-nav-title {
	font-size: 2.25rem;
	font-weight: 700;
}

.config-swp-driver-table-div,
.ordershipmentplan-table-div,
.overview-table-div,
.freight-table-div,
.order-table-div {
	overflow-y: auto;
	max-height: calc(100vh - 500px);
	min-height: calc(100vh - 500px);
}
.ordershipmentplan-table-div thead th,
.overview-table-div thead th,
.freight-table-div thead th,
.order-table-div thead th {
	position: sticky;
	top: 0px;
}
.freight-table-div {
	max-height: calc(100vh - 490px);
	min-height: calc(100vh - 490px);
	margin-top: 0;
}
.ordershipmentplan-table-div {
	max-height: calc(100vh - 410px);
	min-height: calc(100vh - 410px);
	margin-top: 0;
}
.config-swp-driver-table-div {
	max-height: calc(100vh - 365px);
	min-height: calc(100vh - 365px);
	margin-top: 0;
}

.order-table tr.line-item {
	border: none;
	background-color: #F2B8C7;
}
td.action-td {
	padding: 0;
}
div.line-item-expand, div.line-item-collapse {
	width: 100%;
	height: 100%;
	padding: 15px;
}
.line-item-row {
	display: flex;
    align-items: center;
    justify-content: flex-start;
	width: 100%;
}
span.orderItem {
	margin-left:2rem;
	margin-right:.5rem;
}
span.orderQty {
	margin-right:2rem;
	margin-left:.5rem;
}
.hidden {display:none !important;}
.order-table-daily-key {
	align-self: flex-start;
	display: flex;
	width:25%;
}
.order-table-daily-key.end {
	justify-content: flex-end;
}
.order-table-daily-key span.key-item {
    margin-right: .5rem;
}
.order-table-daily-key span.key-item::before {
    content: "";
    width: .75rem;
    height: .75rem;
    display: inline-block;
    margin-right: .25rem;
}
span.key-item.shipped::before {
    background-color: #9EFE62;
}
span.key-item.waiting::before {
    background-color: #EAEAEA;
}
span.key-item.loading::before {
    background-color: #FFF61D;
}

.order-totals-div {
	display: flex;
	justify-content: flex-start;
    align-items: center;
}
div.order-total {
	border: 1px solid black;
}
div.order-total.cube {
	margin: 0 1rem;
	background-color: #F2B8C7;
}
div.order-total .title {
    padding: .25rem;
}
div.order-total .content {
    padding: .25rem;
	height: 1.75rem;
	display: flex;
    justify-content: center;
    align-items: center;
}
.orders-weekly-div div.order-total .title {
    padding: .25rem .75rem;
}
.orders-weekly-div div.order-total .content {
    padding: .25rem .75rem;
}
div.order-total.cube .title,
.orders-weekly-div div.order-total .title {
	border-bottom: 1px solid black;
}
.order-total.rapb,
.order-total.rapp {
	background-color: #6580B1;
}
.order-total.rlwb,
.order-total.rlwp {
	background-color: #80A768;
}
.order-total.rmwb,
.order-total.rmwp {
	background-color: #3CE2ED;
}
.order-total.rcsp {
	background-color: #FFF;
}
.order-total.rdt {
	background-color: #A6D9EA;
}
.order-total.rss005,
.order-total.rss020,
.order-total.rss045,
.order-total.rss090,
.order-total.rss120,
.order-total.rss210,
.order-total.rss300,
.order-total.r250jt,
.order-total.r500jt {
	background-color: #E2EFDA;
}
.order-total.equpw,
.order-total.equpow,
.order-total.equdw,
.order-total.equdow,
.order-total.equt {
	background-color: #FF7676;
}
.order-total.equppw,
.order-total.equppow,
.order-total.equpdw,
.order-total.equpdow,
.order-total.equpt {
	background-color: #A9A9A9;
}
.freight-sheet-header-div,
.orders-monthly-div {
	display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
	min-width: calc(70vw);
}
.orders-monthly-div table {
	/*border-collapse: collapse;*/
	border-collapse: separate;
	border-spacing: 0;
	margin: .75rem;
}
.orders-monthly-div table.week {
	width: 90%;
}
.orders-monthly-div table.driver {
	width: 100%;
}
.orders-monthly-div table.total {
	width: 8%;
}
.orders-monthly-div table tr:first-child,
.orders-monthly-div table tr:last-child {
	border: 1px solid black;
}
/*
.orders-monthly-div table th {
	font-weight: 700;
	font-size: 30px;
}
.orders-monthly-div table tr:last-child {
	font-weight: 800;
	font-size: 30px;
}
.orders-monthly-div table tbody tr:first-child {
	font-weight: 500;
	font-size: 25px;
}
*/
.orders-monthly-div table tr:last-child {
	font-weight: 800;
}
.orders-monthly-div table tr:first-child,
.orders-monthly-div table th {
	border-radius: 8px 8px 0 0;
}
.orders-monthly-div table tr:last-child td:first-child {
	border-radius: 0 0 0 8px;
}
.orders-monthly-div table tr:last-child td:last-child {
	border-radius: 0 0 8px 0;
}
.orders-monthly-div table tr:last-child,
.orders-monthly-div table.total tr:last-child td:last-child {
	border-radius: 0 0 8px 8px;
}
.orders-monthly-div table th {
	color: #FFF;
	background-color: #0056A5;
	padding: .25rem 1.5rem;
}
.orders-monthly-div table th.gtotal {
	padding: .25rem;
	background-color: #D41145;
}
.orders-monthly-div table tr td {
	border: 1px solid black;
	padding: .25rem 1.5rem;
}
.orders-monthly-div table th.total {
	background-color: #D41145;
}
.freight-sheet-header-div .carrier-limits .carrier,
.freight-sheet-header-div .carrier-limits,
.freight-sheet-header-div .current-info {
	margin: 1rem;
    border-radius: 8px;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.freight-sheet-header-div {
    justify-content: flex-start;
}
.freight-sheet-header-div .current-info {
	background-color: #F2B8C7;
}
.freight-sheet-header-div .carrier-limits .item,
.freight-sheet-header-div .current-info .item {
	padding: .5rem;
}
.freight-sheet-header-div .carrier-limits {
	background-color: #0351A64D;
    flex-direction: row;
    padding: 0;
	min-width: 80%;
	max-width: 80vw;
    overflow-x: auto;
	justify-content: space-between;
}
.freight-sheet-header-div .carrier-limits .carrier {
	margin: 0;
}
.freight-sheet-state-navigation {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	width: 100%;
}
.freight-sheet-state-navigation .navigation-button {
	margin: 0;
	width: 20%;
	background-color: #FFF;
	color: #000;
	border-radius: 0px;
	border: 1px solid #000;
}
.freight-sheet-state-navigation .navigation-button:first-child {
	border-radius: 8px 0 0 0;
}
.freight-sheet-state-navigation .navigation-button:last-child {
	border-radius: 0 8px 0 0;
}
th.money,
td.money {
	text-align: right;
}
table.freight-table>tbody tr:nth-child(odd) {
	background-color: #F2B8C7;
}

.overlay {
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: gray;
    opacity: .5;
	z-index: 100;
}
.modal {
	margin: 0;
    position: absolute;
    top: 10%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	color: white;
	background-color: #0056A5;
	/*max-height: 70%;*/
	padding: 2rem;
	opacity: 1 !important;
	z-index: 200;
}
.overview-table {
	background-color: #FFF;
	color: #000;
	padding: 1rem;
	border-radius: 8px;
}
.overview-table td {
	padding: .25rem .5rem;
	border-right: 1px solid black;
}
.overview-table th {
	background-color: #FFF;
	border-right: 1px solid black;
}
.overview-table th:last-child,
.overview-table td:last-child {
	border-right: none;
}
.overview-table td {
	text-align: right;
}
.overview-table td:first-child {
	text-align: left;
}

.overview-table-div {
	max-height: 60vh;
}
.navigation-button.overview {
	padding-left: 2rem;
	padding-right: 2rem;
}
.overview-modal-header {
	display: flex
;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
/*
.overview-modal-header h2 {
	font-weight: 700;
	font-size: 50px;
}
*/
.overview-close,
.overview-close img {
	height: 35px;
}

td.shipmentplan-week-cell {
	width: 6rem;
}
.week-form {
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	width: 100%;
	 background: #0351A64D;
}
.week-form input,
.week-form input:focus,
.week-form input:focus-visible,
.week-form input:active {
	width: 2rem;
	border:none;
	outline:none;
    background-color: transparent;
}
td.shipmentplan-week-cell button {
	padding: 0;
    margin: 0;
    background-color: transparent;
    border: 0;
    height: 1rem;
}
td.shipmentplan-week-cell button > svg {
	height: 1rem;
	width: 1rem;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
	margin-bottom: -.2rem;
	cursor: pointer;
}
.save-btn {
	color: green;
}
.close-btn {
	color: red;
}
.closeNav,
.closeNav svg {
	width: 1.6rem;
	height: 1.6rem;
}
.nav-back,
.driver-list-config {
	cursor: pointer;
}
