body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100vw;
    min-height: 100vh;
}
.product-item, .model-item, .sn-item, .dropdown-item, .brandItem {
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}
.product-item:hover, .model-item:hover, .sn-item:hover, .dropdown-item:hover, .brandItem:hover  {
    background: #6c757d;
    color: white;
}
#suggest {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #6c757d!important;
    margin-bottom: 50px;
    margin: 10px;
}
.product-item.selected, .model-item.selected, .sn-item.selected, .dropdown-item.selected, .brandItem.selected {
    background: #6c757d;
    color: white;
}
.searchtxt {
    width: calc(100% - 36px);
    outline: none;
    border: none;
}
.searchBlock,
#snSelectSearch,
#modelSelectSearch {
    width: 100%;
    display: flex;
    font-size: 20px;
    padding: 5px;
}
.searchMainBlock {
    width: 100%;
}
.dropdown-menu {
    display: none; 
    position: relative; 
    width: 100%;
    border:none;
    z-index: 0;
}
.searchtxt::placeholder {
    color: #6c757d;
}
.searchIcon {
    color: #6c757d;
}
.container {
    width: calc(100% - 20px);
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 70px;
    min-height: calc(100vh - 82px);
}
.profile-card {
    border-radius: 15px;
    text-align: center;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    
}
.profile-header {
    margin-bottom: 15px;
}
.profile-icon {
    font-size: 70px;
    color: #ff3e3e;
}
.profile-email {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.userDetailsTable {
    width: 100%;
    border-collapse: collapse;
}
.userDetailsTable td {
    padding: 12px;
    color: #333;
}
.userField {
    width: 180px!important;
}
.userDetailsTable td:first-child {
    font-weight: bold;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}
.userDetailsTable td svg {
    font-size: 20px;
    color: #ff3e3e;
}
.profile-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.loginMainContainer {
    height: 100%;
    min-height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
}
.paddingwithoutIcon {
    padding-left: 40px!important;
    width: 140px !important;
}
.loginContainer {
    width: 100%;
    padding: 20px;
    height: calc(100% - 61px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
}
.loginContainer input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 4px 10px #5e616633
}
.formLogin {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 101px);
    height: 100%
}
.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.model-item, .sn-item {
    transition: opacity 0.3s ease;
}
.loginButt {
    width: 100%;
    background: #d21325;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px auto;
    font-size: 20px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(255, 62, 62, 0.3);
}
.loginButt:hover {
    background: #920d1b;
}
.loginContainer div {
    text-align: center;
}
.emailBlock,
.passBlock {
    min-height: 100px;
    width: calc(100% - 80px);
    padding: 0 20px;
    margin: 0 10px;
}
.lodinContainerSSO {
    margin: 0 20px;
}
#logoutModal {
    display: none;
}
.buttLoginContainer {
    padding: 0 20px;
}
.loginContainerSSO {
    text-align: center;
    margin-top: 20px;
}
.errorMessage {
    display: none;
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f06371;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.successMessage {
    display: none;
    position: fixed;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #429142;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.loginresult {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f06371;
    color: white;
    font-size: 20px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: fixed;
    animation: fadeOut 7s forwards;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.errorMessage.show,
.successMessage.show {
    display: block;
    opacity: 1;
}
.buttonSSO {
    width: calc(100% - 40px);
    padding: 14px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    background: #d21325;
    box-shadow: 0 4px 10px rgba(255, 62, 62, 0.3);
    transition: all 0.3s ease-in-out;
}
.buttonSSO:hover {
    transform: scale(1.05);
}
.buttonSSO:active {
    transform: scale(0.98);
}
.container > *:not(:nth-child(2)) {
    margin: 20px 0;
}
#alert-container {
    position: fixed;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    width: 80%; 
    max-width: 90%;
    text-align: center;
    font-size: 20px;
    max-height: 50px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: auto;
}
.headerPic {
    text-align: center;
    width: 80%;
    margin: 20px auto!important;
}
.filterTitleLable {
    padding-left: 5px;
    width: 150px;
}
.filterSelectedItem {
    display: flex;
    width: calc(100% - 150px);
    justify-content: space-between;
}
.stats {
    background-color: #f5f5f5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    margin: 0 10px;
}
.userDetailsForm {
    height: auto;
    margin: 0 10px;
    width: 80%;
    min-width: 300px;
    padding-bottom: 40px;
}
.uploadFileContainer {
    background-color: #f5f5f5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}
.uploadFileCommentBlock,
.columnDetailsCommentBlock {
    margin: 10px auto;
    width: calc(100% - 60px);
    padding: 10px 20px;
}
.columnTitle {
    font-weight: bold;
    width: 120px;
    color: #447099;
}
.titleSNumber {
    font-weight: bold;
    color: #447099;
    margin: 0 10px!important;
}
.columnContent {
    border-radius: 5px;
    width: calc(100% - 125px);
    text-overflow: ellipsis;
    margin-left: 5px;
    padding: 3px;
}
.columnBlock {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    margin-bottom: 10px;
}
.borderLine {
    border-bottom:1px solid #6c757d
}
.reportSummaryByType {
    background-color: #f5f5f5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    height: auto;
    margin-bottom: 20px;
    display: flex;
    padding: 10px;
    flex-direction: column;
    margin-left: 10px;
    border-radius: 6px;
}
.fileComment {
    border-radius: 5px;
    width: calc(100% - 10px);
    min-height: 100px;
    margin-top: 10px;
    padding: 5px;
    background: white !important;
    text-align: left !important;
}
.removeFile {
    color: #d21325;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 10px 0;
}
.uploadedFile .orange {
    color: hwb(45 5% 5%);
    margin-left: 10px;
}
.uploadedFileIcons {
    display: flex;
    align-items: center;
}
.fileName {
    width: calc(100% - 70px);
    padding-top: 4px;
    padding-left: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#fileList {
    margin: 20px 0;
    padding-top: 10px;
}
#fileList .uploadedFile.mt-2:first-child {
    border-top: 1px solid #6c757d;
}
#fileList .uploadedFile.mt-2:last-child {
    border-bottom: 1px solid #6c757d;
    padding-bottom: 10px;
}
.inforeport {
    display: none;
}
.inforeport {
    cursor: pointer;
}
.reportSummaryByTypeContainer {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    width: calc(100% - 20px);
    margin: 0 auto;
}
.inforeport table tbody tr:hover {
    background-color: #6c757da3;
    color: white;
    border-radius: 5px;
}
.inforeport table thead {
    border-bottom: 1px solid #6c757d;
}
.serialNumberTable {
    width: 100%;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    border-collapse: collapse;
}
.serialNumberTable td,
.serialNumberTable th {
    padding: 8px;
    text-align: center;
}
.brandContainer:hover,
.brandContainer:active,
.brandContainer:focus {
    box-shadow: 0px 2px 10px #5e616633;
    border-radius: 10px;
}
.reportSummaryByTypeContainer div:last-child {
    margin-bottom: 30px!important;
}
.infoBlock {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.infoBlock span,
.infoBlock h3 {
    margin-right: 10px;
}
.card {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
.form-control {
    outline: none;
    border: none;
    background: none;
    text-align: right;
}
.editableField {
    display: flex;
    flex-direction: row;
    width: calc(100% - 20px);
    justify-content: flex-end;
}
.userDetailsTable tr {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
}
.edit-icon {
    cursor: pointer;
    user-select: none;
}
.editable-field[readonly] {
    border: none;
    text-align: right;
    padding-right: 10px;
}
.footer {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 10px;
    background-color: #f5f5f5;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: fixed;
    bottom: 0;
    width: 100vw;
    z-index: 111;
}
.footer div {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.year-nav {
    display: flex;
    justify-content: space-between;
}
.headerIconContainer {
    padding: 5px;
    cursor: pointer;
    color: #6c757d;
}
.textareaDatails {
    width: 100%;
    border: none;
    border-radius: 5px;
    background: white;
}
.headerIconContainer:hover,
.headerIconContainer:active,
.headerIconContainer:focus {
    border-radius: 10px;
    background: #6c757d;
    color: white;
}
.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}
.datepicker-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    z-index: 1050;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.modal-backdrop-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}
.calendar-table td {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    width: 50px;
}
.typeSystem {
    font-size: 22px;
    margin: 10px;
}
.calendar-table td:hover {
    background-color: #f0f0f0;
}
.year-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
.selected {
    background-color: #6c757d !important;
    color: white !important;
}
.selected-start {
    background-color: #6c757d !important;
    color: white !important;
}
.selected-end {
    background-color: #6c757d !important;
    color: white !important;
}
.selected-range {
    background-color: rgba(108, 117, 125, 0.5) !important;
}
.table-condensed th, 
.table-condensed td {
    padding: 0 10px;
}
.totalNumb {
    font-size: 22px;
}
.userDetailsTable td {
    padding: 10px;
}
.userDetailsTable tr:last-of-type {
    text-align: center;
}
.table-condensed th:nth-child(2) {
    text-align: center;
}
.filterContainer {
    display: flex;
    flex-wrap: wrap;
}
.filterTitle{
    padding-left: 5px;
    width: calc(100% - 10px);
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}
.filterMainBlock {
    width: 100%;
    display: block;
}
.singleFilterContainer {
    width:100%;
    position: relative;
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #6c757d;
    z-index: 1;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0px 2px 10px #5e616633;
}
.singleFilterContainerBrand {
    width:100%;
    position: relative;
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #6c757d;
    z-index: 1;
    flex-direction: column;
    padding: 10px 0;
    box-shadow: 0px 2px 10px #5e616633;
}
#brandSelect.visible {
    display: block;
}
.resultBlock {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.resultBlockIcon {
    font-size: 30px;
}
.commentsReport {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
}
.commentsReport th {
    padding: 12px;
    text-align: center;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.commentsReport td:not(:first-child) {
    padding: 12px;
    text-align: center;
}
.commentsReport td {
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100px;
    padding: 12px;
}
.resualCommentBlock {
    max-height: 74px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.commentsReport thead {
    border-bottom: 1px solid #6c757d;;
}
.reportContainer{
    margin: 10px 20px!important;
}
.success {
    color: #039825;
}
.error {
    color: #c30013;
}
.resultBlockText {
    font-size: 24px;
    padding: 2px 0 0 10px;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
}
.singleFilterContainer.active {
    width: 95%;
    background: white;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
}
.singleFilterContainer.active option {
    width:100%;
    color: blue;
    border-radius: none;
}
select {
    outline: none;
    border:none;
    width: 100%;
}
.lodinContainerSSO {

}
.terexLogin {
    color: white;
}
.submitFilter,
.submitButt {
    border: 1px solid #ff8400;
    color: #fff;
    background-color: #ff8400;
    transition: all 150ms ease-in-out;
    margin-top: 10px;
    border-radius: 5px;
    padding: 10px;
    width:100%;
    font-size: 20px;
    box-shadow: 0 4px 10px #5e616633;
}
.uploadButt {
    border: 1px solid rgb(106, 138, 32);
    color: #fff;
    background-color: rgb(106, 138, 32);
    transition: all 150ms ease-in-out;
    margin-top: 10px;
    border-radius: 5px;
    padding: 10px;
    width:100%;
    font-size: 20px;
    box-shadow: 0 4px 10px #5e616633;
}
.editableFields {
    background-color: #f5f5f5;
}
tr.editing {
    border: 1px solid #ff8400;
    border-radius: 2px;
    transition: border 0.3s ease;
}
.returnIndex {
    border: none;
    font-size: 20px;
    background: none;
    cursor: pointer;
    color: blue;
    margin-top: 20px;
    width: auto !important;
}
.returnBackBlock {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 20px !important;
}
#fileInput {
    display: none;
}
.submitFilterContainer {
    text-align: center;
    width: calc(100% - 40px);
    display: flex;
    margin: 30px 20px;
    flex-direction: row;
    justify-content: space-around;
    font-size: 16px;
}
.submitFilterContainer .resetFilter {
    width: calc(50% - 5px)!important;
    margin-right: 5px;
}
.submitFilterContainer .submitFilter {
    width: calc(50% - 5px)!important;
    margin-left: 5px;
}
.resetFilter {
    background: none;
    transition: all 150ms ease-in-out;
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 20px;
    box-shadow: 0 4px 10px #5e616633;
    border: 1px solid #6c757d;
}
.submitFilter:hover,
.submitFilter:active,
.submitFilter:focus,
.submitButt:hover,
.submitButt:active,
.submitButt:focus {
    background-color: hwb(45 5% 5%);
    color: white;
}
.uploadButt:hover,
.uploadButt:active,
.uploadButt:focus {
    background-color: rgb(106 138 32 / 87%);
    color: white;
}
.menuIcon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}
.brandSplashpage {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
.menuItemText {
    text-align: center;
    font-size: 18px;
    padding-bottom: 10px;
}
.brandContainer {
    display:flex;
    flex-direction: column;
    cursor: pointer;
    width: 135px;
    height: 100%;
    margin: 10px;
    padding: 10px;
}
#modelSelect,
#snSelect,
#productSelect {
    width:100%;
    height: auto;
    display: none;
    visibility: visible;
    opacity: 1;
    z-index: 10;
}
#brandSelect {
    width:100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.claimInformation {
    margin: 0 auto;
    width: calc(100% - 40px);
    padding: 10px;
}
.fileContainer {
    min-height: 100px;
    width: 100%;
}
.submitButtContain {
    margin-bottom: 20px;
    width: 100%;
}
.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    margin: 20px 0 0!important;
    z-index: 10;
    flex-direction: row;
}
.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    background-color: #6e98e4;
    box-shadow: 6px 8px 10px #5e616633;
    font-size: 16px;
    color: white;
    transition: 0.3s;
    flex: 1 1 33.33%;
    border-right: 2px solid white;
    z-index: 11;
    pointer-events: auto;
    touch-action: manipulation;
}
.tab-button.active {
    color: black;
    background-color: #f5f7fa;
}
.tab-content {
    display: none;
    margin: 0 !important;
    background-color: #f5f7fa;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.tab-content.active {
    display: block;
}
#suggestionList {
    list-style-type: none;
    padding-left: 0;
}
#productSelect[style*="display: block"],
#modelSelect[style*="display: block"],
#snSelect[style*="display: block"],
#suggestionList[style*="display: block"] {
    display: block !important;
}
@media screen and (min-width: 768px) {
    button,
    .buttonSSO {
        width: 200px!important;
    }
    .submitButtContain {
        text-align: center;
    }
    .loginContainer {
        width: 40%;
    }
}