html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #121212;
    background-image: url('/images/hexagon_background.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    color: #00aaff;
    font-family: "Courier New", Courier, monospace;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    box-sizing: border-box;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
    z-index: -1;
    transition: background 0.3s ease;
}

body.menu-open .background-overlay,
body.menu-open main {
    background: rgba(18, 18, 18, 0.9);
    filter: blur(5px);
}

.menu-icon {
    width: 30px;
    height: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 4px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-icon.open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.menu-icon.open span:nth-child(2) {
    opacity: 0;
}
.menu-icon.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1a1a1a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    font-family: Arial, Helvetica, sans-serif;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: left;
    padding: 10px;
    font-size: 14px;
    z-index: 1000;
}

.login-button {
    background-color: #00aaff;
    color: #ffffff;
    border: none;
    padding: 5px 10px; 
    font-size: 14px; 
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    position: fixed;
    bottom: 5px;
    right: 20px;
    z-index: 1001;
}

.login-button:hover {
    background-color: #0088cc;
}

.logo img {
    height: 30px;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 100%;
    background: #1a1a1a;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1px; 
}

nav ul li {
    display: flex;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #00aaff;
    font-weight: bold;
    padding: 10px;
}

.nav-lock {
    background: transparent;
    border: none;
    color: #00aaff;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav-lock-form {
    margin: 0;
}

nav ul li a.active {
    color: #ffffff;
    background-color: #00aaff;
    padding: 5px 10px;
    border-radius: 5px;
}

.sub-nav a.active {
    color: #ffffff;
    background-color: #00aaff;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Sub header for internal navigation */
.sub-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6px 20px;
    border-bottom: 1px solid #0f6fc6;
    font-family: Arial, Helvetica, sans-serif;
}

.sub-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.sub-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.sub-user-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid #0f6fc6;
}

.sub-user-btn:hover {
    background: rgba(0, 170, 255, 0.2);
}

.sub-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sub-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sub-nav a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 5px;
}

.sub-nav a:hover {
    background-color: #0f6fc6;
    color: #ffffff;
}

.role-switch select {
    background: #0c0c0c;
    color: #ffffff;
    border: 1px solid #00aaff;
    padding: 4px 8px;
    border-radius: 6px;
}

select {
    background: #0c0c0c;
    color: #ffffff;
    border: 1px solid #00aaff;
    border-radius: 6px;
    padding: 4px 8px;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.3);
}

.logout-form .btn {
    padding: 4px 12px;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border: 1px solid #0f6fc6;
    padding: 10px 14px;
    border-radius: 6px;
    z-index: 3000;
    max-width: 320px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.toast-success {
    background: #1f7a3a;
    border-color: #1f7a3a;
}

.toast-error {
    background: #9b1c1c;
    border-color: #9b1c1c;
}

/* Shared bike card styling */
.bike-card {
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    width: 30%;
    min-width: 250px;
    max-width: 470px;
    box-sizing: border-box;
}

.bike-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.bike-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
}

.bike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bike-card-content {
    text-align: left;
    margin-top: 10px;
}

/* Panel card for internal forms */
.panel-card {
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #00aaff;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 20px auto;
    box-sizing: border-box;
}

/* Sales form */
.sales-form {
    margin-top: 10px;
}

.sales-grid {
    display: grid;
    gap: 12px;
}

.sales-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 12px;
}

.sales-field {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    align-items: center;
}

.sales-label {
    font-weight: bold;
    color: #ffffff;
    text-align: left;
}

.sales-input {
    position: relative;
}

.sales-input input[type="text"],
.sales-input input[type="number"] {
    width: 100%;
}

input[disabled],
input[readonly] {
    color: #ffffff;
    opacity: 0.7;
    background: #0c0c0c;
}

.sales-checkboxes {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
}

.actions {
    margin-top: 28px;
}

/* Modal */
.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.modal-panel {
    position: relative;
    background: #111111;
    color: #ffffff;
    border: 1px solid #00aaff;
    border-radius: 10px;
    padding: 16px 10px 20px 16px;
    width: min(480px, 90vw);
    z-index: 1;
}

.modal-doc-panel {
    width: min(1100px, 94vw);
    height: min(82vh, 900px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contract-link-row {
    margin: 0;
}

.contract-frame-wrap {
    flex: 1 1 auto;
    border: 1px solid rgba(0, 170, 255, 0.35);
    border-radius: 8px;
    overflow: hidden;
    background: #0b0b0b;
}

.contract-frame-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    background: #0b0b0b;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #00aaff;
    background: #0e0e0e;
    color: #ffffff;
    cursor: pointer;
}

.modal-close:hover {
    background: #14232f;
}

.login-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.login-label {
    text-align: left;
    word-break: keep-all;
    overflow-wrap: normal;
}

.nowrap {
    white-space: nowrap;
}

.login-input input {
    width: 100%;
    box-sizing: border-box;
}

.password-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-wrap input {
    flex: 1;
}

.pass-toggle {
    position: static;
    width: 32px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #7d8a99;
    background: #1a222b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.pass-toggle svg {
    width: 18px;
    height: 18px;
    fill: #d9e3ee;
}

.pass-toggle:hover {
    background: #2b3a48;
}

.pass-toggle.is-visible svg {
    fill: #00aaff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.modal-list {
    display: grid;
    gap: 8px;
    margin: 10px 0;
}

.modal-form-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px 16px;
    align-items: center;
    margin-top: 12px;
}

.modal-label {
    font-weight: bold;
    color: #ffffff;
    text-align: left;
}

.modal-input input[type="text"],
.modal-input input[type="number"] {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00aaff;
    border-radius: 5px;
    color: #ffffff;
    box-sizing: border-box;
}

.table-scroll {
    overflow: auto;
    max-width: 100%;
}

.sales-history-card {
    width: 95%;
    max-width: 95%;
    max-height: 80vh;
    margin-left: auto;
    margin-right: auto;
}

.sales-history-card .table-scroll {
    max-height: 80vh;
}

.sales-history-header {
    width: 95%;
    margin: 24px auto 12px auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.sales-history-title {
    grid-column: 2;
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    text-align: center;
    margin: 0;
}

.sales-history-filter {
    grid-column: 3;
    justify-self: end;
}

.sales-history-filter select {
    background: #000000;
    border: 1px solid rgba(0, 170, 255, 0.5);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
}

.sales-history-table {
    width: 100%;
    min-width: 2600px;
    border-collapse: collapse;
    color: #ffffff;
    table-layout: auto;
}

.sales-history-table th,
.sales-history-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.25);
    white-space: nowrap;
    vertical-align: top;
}

.sales-history-table th:nth-child(6),
.sales-history-table td:nth-child(6) {
    min-width: 170px;
}

.sales-history-table th:nth-child(7),
.sales-history-table td:nth-child(7) {
    min-width: 18ch;
}

.sales-history-table th {
    text-align: center;
    background: rgba(0, 170, 255, 0.75);
    position: sticky;
    top: 0;
    z-index: 2;
}

.sales-history-table select,
.sales-history-table input[type="text"],
.sales-history-table input[type="number"] {
    width: 100%;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00aaff;
    border-radius: 4px;
    color: #ffffff;
    box-sizing: border-box;
}

.sales-plate-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sales-plate-wrap .sales-plate-input {
    flex: 1 1 auto;
    min-width: 160px;
}

/* Autocomplete */
.autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #00aaff;
    z-index: 80;
    padding: 6px;
}

.suggest-item {
    width: 100%;
    text-align: left;
    background: transparent;
    color: #ffffff;
    border: none;
    padding: 6px;
    cursor: pointer;
}

.suggest-item:hover {
    background: rgba(0, 170, 255, 0.2);
}

.suggest-item.is-active {
    background: rgba(0, 170, 255, 0.35);
}

@media (max-width: 900px) {
    .sales-row {
        grid-template-columns: 1fr;
    }
    .sales-field {
        grid-template-columns: 1fr;
    }
    .sales-checkboxes {
        flex-direction: column;
        align-items: flex-start;
    }
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    text-align: center;
}

.image-container img {
    max-width: 950px;
    width: 100%;
    height: auto;
}

.leistungen-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    text-align: left;
}

.leistung {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.leistung p {
    /*font-weight: bold;*/
    font-size: 17px;
    color: #ffffff;
}

.leistung img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(54, 54, 54, 0.9);
    list-style: none;
    padding: 5px 12px;
    margin: 0;
    top: calc(100% + 22px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 170px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li {
    padding: 8px 0;
    font-size: 1.0em;
    text-align: center;
}
.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}
.nav-item.active {
    font-weight: bold;
}

@media (max-width: 1025px) {
    .menu-icon {
        display: flex;
    }

    nav {
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        transition: transform 0.3s ease;
        transform: translateY(-100%);
        z-index: 2;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    body.menu-open nav {
        transform: translateY(0);
    }

    header nav {
        display: none;
    }
    
    body.menu-open header nav {
        display: flex;
    }
}

/* Inline field row (e.g. Nummernschild + Random) */
.field-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: nowrap;
}

.field-row input {
    flex: 1;
}

.field-row .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Button style */
.btn {
    background: #d9e3ee;
    color: #0a0a0a;
    border: 1px solid #7d8a99;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn.primary {
    background: #0a4f8c;
    border-color: #0a4f8c;
    color: #ffffff;
}

.btn.ghost {
    background: transparent;
    border: 1px solid #7d8a99;
    color: #d9e3ee;
}

.btn.small {
    padding: 4px 10px;
    font-size: 12px;
}

.btn:hover {
    background: #ffffff;
    border-color: #c7d3df;
}

.btn.ghost:hover {
    background: #1f2a33;
    color: #ffffff;
    border-color: #9bb3c8;
}

.btn:active {
    transform: translateY(1px);
    box-shadow: none;
    background: #c9d6e3;
    border-color: #9aa6b4;
}

.btn.ghost:active {
    background: #162029;
    color: #ffffff;
    border-color: #9bb3c8;
}

/* Admin permissions table */
.admin-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 0 10px;
}

.admin-header > h1 {
    grid-column: 2;
    text-align: center;
}

.admin-view-switch select {
    background: #0b0b0b;
    color: #ffffff;
    border: 1px solid rgba(0, 170, 255, 0.5);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
}

.admin-view-switch {
    grid-column: 3;
    justify-self: end;
}

.admin-view-panel[hidden] {
    display: none;
}

.admin-permissions {
    margin: 16px 10px 0;
    text-align: left;
}

.admin-permissions-scroll {
    overflow-x: auto;
    border: 1px solid #00aaff;
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.7);
}

.admin-permissions table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.admin-permissions th,
.admin-permissions td {
    border-bottom: 1px solid rgba(0, 170, 255, 0.3);
    padding: 10px 12px;
    vertical-align: top;
    color: #ffffff;
}

.fleet-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    table-layout: auto;
}

.fleet-table th,
.fleet-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.25);
    white-space: nowrap;
}

.fleet-table th {
    text-align: center;
    background: rgba(0, 170, 255, 0.75);
    position: sticky;
    top: 0;
    z-index: 2;
}

.fleet-table .col-model {
    width: 220px;
}

.fleet-table .col-notes {
    width: 260px;
}

.fleet-table .col-inspection {
    width: 150px;
}

.fleet-table th:nth-child(2),
.fleet-table td:nth-child(2) {
    min-width: 9ch;
}

.fleet-table th:nth-child(3),
.fleet-table td:nth-child(3) {
    min-width: 10ch;
}

.fleet-table th:nth-child(4),
.fleet-table td:nth-child(4) {
    min-width: 11ch;
}

.fleet-table th:nth-child(5),
.fleet-table td:nth-child(5) {
    min-width: 11ch;
}

.fleet-table th:nth-child(6),
.fleet-table td:nth-child(6) {
    min-width: 17ch;
}

.fleet-table th:nth-child(7),
.fleet-table td:nth-child(7) {
    min-width: 19ch;
}

.fleet-panel {
    width: 100%;
    max-width: none;
}

.fleet-table-wrap {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 570px;
}

.fleet-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: start;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(24px, 8vw, 150px);
    margin: 0 auto;
    box-sizing: border-box;
}

.fleet-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
}

.fleet-actions .btn {
    text-align: center;
    width: 100%;
}

.fleet-actions-card {
    width: 100%;
    margin: 0;
    max-width: none;
}

@media (max-width: 1100px) {
    .fleet-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .fleet-actions {
        flex-direction: row;
    }

    .fleet-actions .btn {
        width: auto;
    }
}

.fleet-row {
    cursor: pointer;
}

.fleet-row:hover {
    background: rgba(0, 170, 255, 0.12);
}

.fleet-details td {
    background: rgba(0, 0, 0, 0.55);
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
}

.fleet-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    padding: 6px 0;
}

.row-warning td {
    background: rgba(255, 195, 0, 0.25);
}

.row-overdue td {
    background: rgba(255, 70, 70, 0.35);
}

.admin-permissions thead th {
    background: rgba(0, 170, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1;
}

.admin-permissions .page-label {
    font-weight: bold;
    color: #d9e3ee;
    white-space: nowrap;
}

.perm-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 13px;
}

.perm-check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #7d8a99;
    background: #0e0e0e;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
}

.perm-check input[type="checkbox"]::after {
    content: "";
    width: 10px;
    height: 6px;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transform: translateY(-3px) rotate(-45deg);
}

.perm-check input[type="checkbox"]:checked::after {
    border-left-color: #00aaff;
    border-bottom-color: #00aaff;
}

.perm-check input[type="checkbox"]:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.admin-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 16px 10px 0;
}

.admin-status-card {
    border: 1px solid rgba(0, 170, 255, 0.35);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.7);
    padding: 16px;
}

.admin-status-card h3 {
    margin: 0 0 12px;
    color: #d9e3ee;
    font-size: 16px;
}

.admin-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.admin-status-list li {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 1.5fr) auto;
    gap: 12px;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
}

.status-badge {
    text-transform: uppercase;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #c9d6e3;
    letter-spacing: 0.4px;
}

.status-ok {
    background: rgba(0, 160, 90, 0.2);
    color: #77f4ba;
}

.status-warn {
    background: rgba(255, 195, 0, 0.2);
    color: #ffd56b;
}

.status-error {
    background: rgba(255, 70, 70, 0.2);
    color: #ff6f6f;
}

.status-muted {
    background: rgba(120, 130, 140, 0.2);
    color: #c0c8d1;
}

.sales-history-table .status-badge {
    display: inline-block;
    min-width: 86px;
    text-align: center;
}

.input-error {
    border-color: #ff4b4b !important;
    box-shadow: 0 0 0 1px rgba(255, 75, 75, 0.5);
    background-color: rgba(255, 75, 75, 0.12);
}

.btn.primary:hover {
    background: #0f6fc6;
    border-color: #0f6fc6;
}

.btn.primary:active {
    background: #083760;
    border-color: #083760;
}
