/* --- Общие стили для экрана --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
}

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

.therapy-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.therapy-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
}

h1 #orderNumber {
    color: #3498db;
    font-weight: bold;
}

fieldset {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

legend {
    padding: 0 10px;
    font-weight: bold;
    color: #3498db;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-group label {
    flex: 0 0 150px;
    margin-right: 15px;
}

label.required::after {
    content: " *";
    color: #e74c3c;
}

.form-group-inline-mobile {
    margin-bottom: 0;
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    flex: 1;
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.static-text-field {
    flex: 1;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 500;
}

.form-group {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 165px;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.product-row {
    position: relative;
    z-index: 2;
}

.autocomplete-items-product {
    position: absolute;
    border: 1px solid #d4d4d4;
    z-index: 98;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    display: none;
}

.autocomplete-items:not(:empty),
.autocomplete-items-product:not(:empty) {
    display: block;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.autocomplete-dropdown {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    z-index: 9999;
    max-height: 240px;
    overflow: auto;
    padding: 6px 4px;
    box-sizing: border-box;
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #222;
    white-space: nowrap;
}

.autocomplete-item.selected,
.autocomplete-item:hover {
    background: #f0f7ff;
}

.autocomplete-empty {
    padding: 8px 12px;
    color: #666;
    font-size: 13px;
}

.autocomplete-item .acd-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 480px) {
    .autocomplete-dropdown {
        max-height: 200px;
        font-size: 15px;
    }
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.btn-primary {
    background-color: #3498db;
    width: 100%;
}

.btn-success {
    background-color: #2ecc71;
    width: 100%;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #7f8c8d;
}

.btn-secondary:hover {
    background-color: #6c7a7b;
}

.btn.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
}

.btn-logout {
    background-color: #e74c3c;
    padding: 8px 15px;
}

.btn-logout:hover {
    background-color: #c0392b;
}

.date-toggle-btn {
    margin-left: 10px;
    padding: 8px 15px;
    flex: 0 0 auto;
}

.product-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #555;

    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
}

.product-row>* {
    box-sizing: border-box;
}

.product-name-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-autocomplete-wrapper {
    position: relative;
    flex: 5 1 320px;
}

.product-autocomplete {
    width: 100%;
}

.product-rest-display {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 0.9em;
    pointer-events: none;
}

.product-autocomplete {
    padding-right: 50px !important;
}

.out-of-stock {
    color: #e74c3c;
    font-weight: bold;
}

.product-row .product-quantity {
    flex: 0 1 80px;
    min-width: 70px;
}

.product-row .product-price,
.product-row .product-row-sum {
    flex: 0 1 90px;
    text-align: right;
    padding: 0 10px;
    min-width: 80px;
}

.product-row .remove-product-btn {
    flex: 0 0 30px;
}

.product-header .header-product {
    flex: 5 1 320px;
}

.product-header .header-quantity {
    flex: 0 1 80px;
    min-width: 70px;
}

.product-header .header-price,
.product-header .header-sum {
    flex: 0 1 90px;
    min-width: 80px;
    text-align: right;
}

.product-quantity {
    box-sizing: border-box;
}

.product-row div input,
.product-row div select {
    width: 100%;
}

.remove-product-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}

.remove-product-btn:hover {
    background-color: #c0392b;
}

.total-sum {
    font-size: 1.2em;
    font-weight: bold;
}

#totalSum {
    color: #2c3e50;
}

.form-group-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-group-row .form-group {
    margin-bottom: 0;
}

.radio-group {
    display: flex;
    flex: 1;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-group label {
    flex: initial;
    margin-right: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.signature-field {
    display: none;
}

.input-with-warning-container {
    padding-bottom: 20px;
}

.input-with-warning-wrapper {
    flex: 1;
    position: relative;
}

.input-with-warning-wrapper input {
    width: 100%;
}

.customer-debt-warning {
    color: #e74c3c;
    font-size: 0.9em;
    font-weight: bold;
    position: absolute;
    top: 100%;
    left: 0;
}

.therapy-row label {
    text-align: right;
}

.therapy-row .form-group {
    margin-bottom: 0;
    flex: 1;
}

.therapy-row .radio-button-group {
    flex: none;
    padding-left: 165px;
}

.therapy-row label.therapyEndDate {
    flex: 0 0 50px;
}

.radio-button-group {
    display: flex;
    flex-grow: 1;
}

.therapy-row .radio-button-group label span {
    padding: 3px 20px
}

.radio-button-group input[type="radio"] {
    display: none;
}

.radio-button-group span {
    display: block;
    padding: 8px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    background-color: #f9f9f9;
}

.radio-button-group input[type="radio"]:checked+span {
    background-color: #3498db;
    color: white;
    border-color: #2980b9;
    font-weight: bold;
}

.clearTherapyBtn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 3px 20px;
}

/* --- Стили для мобильных устройств --- */
@media (max-width: 768px) {
    body {
        padding: 0;
        margin: 0;
    }

    .container {
        padding: 10px 7px;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    fieldset {
        padding: 15px 10px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.5em;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label, .therapy-row label.therapyEndDate {
        flex-basis: auto;
        margin-right: 0;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .form-group input, .form-group select {
        flex-basis: 100%;
        width: 100%;
    }

    .form-group input[type="checkbox"] {
        width: auto;
    }

    .therapy-section {
        gap: 10px;
    }

    .therapy-row {
        flex-direction: row;
        align-items: stretch;
        width: 100%;
    }

    .therapy-row .form-group {
        flex: 1;
    }

    .therapy-row.therapy-buttons-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .therapy-row .radio-button-group {
        display: contents;
        padding: 0;
    }

    .therapy-row .radio-button-group label span {
        flex: 1;
    }

    .radio-group {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .radio-group label {
        font-weight: normal;
        white-space: nowrap;
    }

    .radio-group input[type="radio"] {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        flex: 1;
    }

    .input-with-warning-wrapper {
        width: 100%;
    }

    .autocomplete-items {
        left: 0;
    }

    .form-group-inline-mobile {
        flex-direction: row !important;
        align-items: center !important;
    }

    .products-table-wrapper {
        margin-bottom: 10px;
    }

    .product-header {
        display: none;
    }

    .product-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        position: relative;
        padding-top: 12px;
    }

    .product-row>[data-label]::before,
    .product-autocomplete-wrapper[data-label]::before {
        content: attr(data-label);
        font-weight: bold;
        font-size: 14px;
        color: #555;
        display: inline-block;
        margin-right: 10px;
    }

    .product-autocomplete-wrapper {
        width: 100%;
        flex-basis: 100%;
    }

    .product-row .product-unit-wrapper,
    .product-row .product-quantity-wrapper,
    .product-row .product-dose-wrapper {
        display: grid;
        align-items: center;
        flex: 1 1 30%;
    }

    .product-row .product-price,
    .product-row .product-row-sum {
        flex: 1;
        padding: 2px;
        text-align: left;
    }

    .product-row .remove-product-btn {
        position: absolute;
        top: 6px;
        right: 6px;
    }

    .product-rest-display {
        top: auto;
        bottom: 0px;
    };

    .btn-secondary {
        width: 100%;
    }

    .form-buttons-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
}

/* --- Стили для десктопной версии (переопределение) --- */
@media (min-width: 769px) {

    .product-row>[data-label]::before,
    .product-autocomplete-wrapper[data-label]::before {
        display: none;
    }

    .product-header {
        display: grid;
        grid-template-columns: 1fr 160px 70px 100px 120px 40px;
        gap: 10px;
        align-items: center;
        padding: 0 10px;
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: bold;
        color: #555;
    }

    .product-header .header-unit,
    .product-header .header-quantity,
    .product-header .header-dose {
        text-align: center;
    }

    .product-header .header-price {
        text-align: right;
    }

    .product-row {
        display: grid;
        grid-template-columns: 1fr 160px 70px 100px 120px 40px;
        gap: 10px;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0;
        border: none;
        border-radius: 0;
        margin-bottom: 10px;
    }

    .product-row .product-autocomplete-wrapper,
    .product-row .product-quantity-wrapper,
    .product-row .product-dose-wrapper,
    .product-row .product-unit-wrapper {
        width: 100%;
        flex-basis: auto;
    }

    .product-row .remove-product-btn {
        position: static;
        width: 30px;
        height: 30px;
        justify-self: center;
    }
}

.form-group-row {
    flex-direction: row;
    gap: 15px;
}

@media print {
    body {
        background-color: #fff;
        padding: 10px;
        font-size: 12pt;
    }

    .container, .preview-overlay {
        display: none !important;
    }

    #print-overlay {
        display: block !important;
    }

    #print-content {
        visibility: visible;
    }

    .container, .container * {
        visibility: visible;
    }

    .preview-overlay[style*="display: flex"] .container, .preview-overlay[style*="display: flex"] .container * {
        visibility: hidden !important;
    }

    .btn, .remove-product-btn, .product-filter, .date-toggle-btn {
        visibility: hidden !important;
    }

    #orderForm>fieldset:nth-of-type(1) {
        grid-area: main-info;
    }

    .therapy-section {
        grid-area: therapy-info;
    }

    #orderForm>fieldset:nth-of-type(2) {
        grid-area: products;
    }

    #orderForm>.form-group:has(#consultationPrice) {
        grid-area: consultation;
    }

    #orderForm>fieldset:nth-of-type(3) {
        grid-area: totals;
    }

    input, select {
        border: none !important;
        box-shadow: none !important;
        background-color: #fff !important;
        padding: 2px 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-group {
        flex-direction: row !important;
        align-items: center !important;
        margin-bottom: 0 !important;
    }

    .form-group label {
        margin-bottom: 0 !important;
        font-weight: normal !important;
    }

    .checkbox-group input[type="checkbox"] {
        width: 22px;
        height: 22px;
        vertical-align: middle;
        position: relative;
        top: -1px;
        transform: none;
    }

    .signature-field {
        display: flex !important;
        flex: 1;
    }

    .signature-field label::after {
        content: "___________________";
        margin-left: 10px;
    }

    .products-table-wrapper {
        padding: 0 5px;
    }

    .product-header {
        display: flex !important;
        gap: 10px;
        border-bottom: 1px solid #ccc !important;
        padding-bottom: 5px !important;
    }

    .product-row {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        border: none !important;
        padding: 5px 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        margin-bottom: 0 !important;
        align-items: center !important;
        border-radius: 0 !important;
        border: none !important;
    }

    .product-row>* {
        flex-basis: auto !important;
        width: auto !important;
    }

    .product-row .product-filter,
    .product-row .remove-product-btn {
        display: none !important;
    }

    .product-quantity {
        text-align: center;
    }

    .product-row>[data-label]::before, .product-autocomplete-wrapper[data-label]::before {
        display: none;
    }

    .checkbox-group {
        padding-left: 10px;
        flex-direction: row;
    }

    #totalSum {
        margin-left: 10px;
    }

    .preview-overlay[style*="display: flex"]~.container {
        visibility: hidden !important;
    }

    h1 {
        flex: 1;
        margin: 10px;
    }

    label.required::after {
        display: none;
    }

    .radio-group label:not(:has(input:checked)) {
        display: none;
    }

}

.checkbox-group label {
    flex: initial;
    margin-right: 0;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    accent-color: #3498db;
    cursor: pointer;
    flex-basis: auto;
}

#dev-generate-pdf-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 15px;
    background-color: #e67e22;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#print-overlay {
    display: none;
    background-color: white;
}

.print-header h1 {
    text-align: center;
    margin-bottom: 20px;
}

.print-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.print-group {
    display: flex;
    margin-bottom: 5px;
}

.print-group label {
    flex: 0 0 150px;
    font-weight: normal;
}

.print-group span {
    font-weight: bold;
}

.print-col-right .payment-method {
    margin-top: 30px;
}

#print-products .product-header {
    display: flex;
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding: 0 0 5px;
}

.print-totals {
    padding-top: 10px;
    border-top: 1px solid #000;
}

.print-totals .print-group.total {
    font-size: 1.1em;
    font-weight: bold;
}

.print-footer-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.print-footer-row .print-group {
    flex: 1;
}

.print-footer-row .print-group label {
    flex: 0 0 auto;
    margin-right: 10px;
}

.signature-line {
    border-bottom: 1px solid #000;
    flex-grow: 1;
    margin-left: 10px;
}

#print-products {
    padding: 0 5px;
}

#print-products .product-row {
    display: flex;
    border-bottom: 1px dotted #ccc;
    font-size: 14px;
    border-radius: 0;
    border-width: 0 0 1px;
    padding: 8px 0;
    margin-bottom: 0;
}

#print-products .header-product, #print-products .print-product-name {
    width: 39%;
    flex: none
}

#print-products .header-unit, #print-products .print-product-unit {
    width: 9%;
    text-align: left;
}

#print-products .header-quantity, #print-products .print-product-quantity {
    width: 9%;
    text-align: center;
    flex: none;
}

#print-products .header-dose, #print-products .print-product-dose {
    width: 9%;
    text-align: center;
}

#print-products .header-price, #print-products .print-product-price {
    width: 14%;
    text-align: right;
    flex: none
}

#print-products .header-sum, #print-products .print-product-sum {
    width: 20%;
    text-align: right;
    flex: none;
}

#print-products .print-product-name {
    word-break: break-word;
}

#print-products .print-product-dose:empty::before {
    content: "-";
    color: #333;
}

.pdf-generation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    font-size: 1.2em;
    color: #333;
    backdrop-filter: blur(5px);
}

.preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 247, 249, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 5px;
}

.preview-container {
    width: 100%;
    max-width: 480px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.preview-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.preview-header h2 {
    margin: 0;
    font-size: 1.2em;
    color: #2c3e50;
}

.preview-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

#preview-content {
    padding: 10px 7px 0;
    box-shadow: none;
    border-radius: 0;
}

#preview-content fieldset {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 0;
}

#preview-content h1 {
    font-size: 1.5em;
}

#preview-content .form-group {
    flex-direction: row;
    align-items: center;
    margin-bottom: 5px;
}

#preview-content .form-group label {
    flex: 0 0 150px;
    margin-right: 10px;
    margin-bottom: 0;
    font-weight: normal;
    white-space: nowrap;
}

#preview-content .date-toggle-btn {
    display: none !important;
}

#preview-content .form-group .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

#preview-content label.required::after {
    content: "";
}

#preview-content .form-group .static-text-field {
    width: auto;
    position: relative;
    flex: 1;
    padding: 5px 0;
}

#preview-content .form-group .static-text-field.select-field {
    display: none;
}

#preview-content .form-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: default;
}

#preview-content .form-group input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 16px;
    top: 1px;
    left: 2px;
}

#preview-content .form-group-inline-mobile {
    flex-direction: row !important;
    align-items: center !important;
}

#preview-content .form-group-inline-mobile label {
    margin-bottom: 0;
    margin-right: 10px;
}

#preview-content .form-group-inline-mobile .static-text-field {
    width: auto;
    flex: 1;
}

#preview-content .product-header,
#preview-content .remove-product-btn {
    display: none;
}

#preview-content .product-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    border-radius: 0;
    border: none;
    border-top: 1px solid #8f8f8f;
    position: relative;
    margin-bottom: 10px;
}

#preview-content .product-row .product-name-wrapper {
    flex-basis: 100%;
    width: 100%;
}

#preview-content .product-row>div label {
    content: attr(data-label);
    font-weight: normal;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

#preview-content .product-row .static-text-field {
    padding: 2px;
}

#preview-content .product-row .product-name-group {
    flex-basis: 100%;
    width: 100%;
}

.preview-footer {
    padding: 0 5px 5px;
}

.preview-footer .btn {
    width: auto;
    flex: 1;
}

.floating-menu {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1100;
}

.floating-menu-button {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}

.floating-menu-button:hover {
    background-color: #2980b9;
}

.menu-dropdown {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    overflow: hidden;
}

.menu-dropdown.show {
    display: block;
}

.menu-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-dropdown a:last-child {
    border-bottom: none;
}

.menu-dropdown a:hover {
    background-color: #f5f5f5;
}

.menu-dropdown a i {
    margin-right: 10px;
    color: #555;
}