.order-details-row {
    background-color: #f9f9f9;
}

.editable__table .active-order-row {
    background-color: #e6f2ff !important;
}

.editable__table tbody tr:not(.editable__table-head):hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.order-details-container {
    display: flex;
    padding: 20px;
    gap: 20px;
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-list table {
    width: 100%;
    border-collapse: collapse;
    height: 100%;
}

.services-list table tr {
    border-bottom: 1px solid #e0e0e0;
}

.services-list table td {
    padding: 8px 0;
}

.services-list .total-row {
    font-weight: bold;
    background-color: #f0f0f0;
}

.order-additional-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.count {
    text-align: end;
    min-width: 55px;
}

.sum {
    min-width: 100px;
    text-align: end;
}

.total-sum {
    text-align: end;
    min-width: 100px;
}

.comment-section,
.address-section {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
}

.comment-section h3,
.address-section h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.comment-section p,
.address-section p {
    margin: 0;
    color: #666;
}

.client-section {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 5px;
}

.client-info-container {
    display: flex;
    justify-content: space-between;
}

.way-to-contact {
    display: flex;
    gap: 100px;
}

.need-to-contact-section {
    margin-top: 10px;
    background-color: #f0f0f0;
    padding: 5px 15px 15px;
    border-radius: 5px;
}

.need-to-contact {
    max-width: 900px;
}

.dropdown-menu {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    background-color: #ffffff;
    z-index: 10;
}

.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
}

.dropdown-menu a {
    text-decoration: none;
    display: block;
    color: #000000;
    font-size: 15px;
    padding: 16px 20px;
    font-weight: 600;
    box-shadow: 0px 0px 4px -2px rgba(0, 0, 0, 0.5);
    transition: all ease-in-out 0.3s;
}

.dropdown-menu a:hover,
.dropdown-menu a:active,
.dropdown-menu a:focus {
    background-color: #0979ce;
    color: #ffffff;
}

/* Показываем меню при наличии класса dropdown-active */
.dropdown-menu.dropdown-active {
    display: block;
}

/* Стиль для открытого dropdown (подсветка кнопки) */
.dropdown-container.dropdown-open .dropdown-toggle {
    background-color: #0979ce;
    color: #ffffff;
}

.dropdown-container.dropdown-open .dropdown-toggle::before {
    transform: rotate(-135deg);
}

.footer__nav-icons {
    display: flex;
    justify-items: center;
}

.way-to-contact__order {
    margin-right: 7%;
    display: flex;
    justify-content: end;
}

.order-btn {
    text-align: center;
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px;
    border: none;
    background-color: #ffc733;
    box-shadow: 0 .3125em 1.25em rgba(255, 185, 0, .5);
    cursor: pointer;
}

.order-btn:hover {
    transform: scale(1.03);
}