.projector-driver-container .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.projector-driver-container .inner-content a {
    color: #E96C3C;
    text-decoration: none;
}

.inner-content {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 0 30px;
}

.sidebar-content {
    float: left;
    width: 25%;
    padding: 15px;
    border-radius: 10px;
}

.sidebar-content .sidebar-title {
    text-transform: uppercase;
    font-size: 22px;
}

.driver-display-list {
    padding-left: 0;
}

.driver-display-list li {
    list-style: none;
    border-bottom: 1px dotted #CBD0D1;
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.driver-display-list.type li {
    padding: 10px;
}

.driver-display-list li.active {
    background: #f1f1f2;
}

.driver-display-list li.all:first-child {
    padding-left: 20px;
}

.driver-display-list li a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 100%;
}

.driver-item a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.driver-item img {
    height: auto;
    max-width: 60px;
    object-fit: contain;
    width: 100%;
    margin-right: 10px;
}

.display-content {
    float: left;
    width: 75%;
    padding: 15px;
    border-radius: 10px;
    position: relative;
}

.display-content table {
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.display-content table th,
.display-content table td {
    padding: 10px;
    border-left: 2px solid white;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
}

.display-content table th {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    background-color: #D4E8E7;
    border-left: 2px solid white;
}

.display-content table tr th:first-child,
.display-content table tr td:first-child {
    border-left: 1px solid #80808080;
}

.display-content table tr:nth-child(2n) {
    background-color: #F1F1F2;
}

.display-content table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.display-content .table-content {
    margin-bottom: 30px;
}

.table-content .feature-img {
    height: auto;
    max-width: 100px;
    object-fit: contain;
    width: auto;
    margin-bottom: 10px;
}

.mobile-dropdown {
    display: none;
}

.mobile-dropdown.mobile--drivers {
    padding: 15px;
    background: #DFDFDF;
    position: sticky;
    bottom: 10px;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}

.mobile-dropdown.mobile--drivers select {
    background: transparent;
    border: none;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.mobile-dropdown.mobile--drivers option {
    font-size: 14px;
    font-weight: 400;
}


@media (max-width: 768px) {
    .inner-content {
        padding: 0;
    }

    .sidebar-content {
        display: none;
    }

    .display-content {
        width: 100%;
    }

    .mobile-dropdown {
        display: block;
    }
}

@media (max-width: 575px) {
    .display-content table {
        display: block;
    }
}