.active-loads {
    display: flex;
    padding: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    flex-grow: 1;
    min-height: 500px;
    overflow-y: auto;
    border-radius: 32px;
    background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
}

.header-input-loads {
    display: flex;
    height: 82px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.header-loads {
    display: flex;
    gap: 24px;
    align-self: stretch;
    flex-direction: column;
}

.input-loads {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amount-rows {
    display: flex;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
    color: #191919;
    border: 1px solid #ffffff;
}

.loadboard-page {
    display: flex;
    gap: 64px;
    flex-direction: column;
    max-width: 1920px;
    width: 100%;
    align-items: center;
    flex: 1;
    min-height: 100vh;
}

.labeltable {
    color: #777;
    font-family: "TT Hoves";
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0;
}

.sort-icon {
    font-size: 12px;
    color: #777;
    margin-left: 8px;
}

#load-number-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-family: "TT Hoves";
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #D25122;
    outline: none;
    line-height: 44px;
    padding: 0;
}

#load-number-input::placeholder {
    color: #bbb;
}

.inputs-row:hover {
    background: #f9f9f9;
}

.copyinput {
    font-family: "TT Hoves";
    font-size: 14px;
    color: #777;
    text-align: left;
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copyinput a {
    color: #D25122;
    text-decoration: none;
    font-weight: 500;
}

.copyinput a:hover {
    text-decoration: underline;
}

.scroll-container {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: auto;
    background: white;
    position: relative;
    overflow: visible;
}

.scroll-content {
    display: inline-flex;
    flex-direction: column;
    min-width: 100%;
    height: 100%;
    overflow: visible;
    position: relative;
}

.tablefilter.active {
    background: rgba(210, 81, 34, 0.05);
}

.tablefilter.asc .sort-icon::after {
    content: "↑";
    color: #D25122;
}

.tablefilter.desc .sort-icon::after {
    content: "↓";
    color: #D25122;
}

@media (max-width: 1280px) {
    .active-loads {
        padding: 48px;
        border-radius: 24px;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .active-loads {
        padding: 48px;
        border-radius: 20px;
    }
    #calendar-fromto {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .active-loads {
        padding: 32px;
        border-radius: 16px;
    }
}