@font-face {
    font-family:"Marley";
    font-style:normal;
    font-weight:400;
    src:url(../css/fonts/AIRSI___.ttf) format('truetype');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    height: 100%;
    overflow: hidden;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg,rgba(0, 30, 74, 1) 0%, rgba(43, 89, 107, 1) 42%, rgba(255, 188, 87, 1) 90%, rgba(6, 33, 0, 1) 91%);
    color: #eee;
    height: 100vh;
    max-width: 100vh;
    margin: 0 auto;
    padding-top: 52px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vh;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    Xbackground: rgba(0,0,0,.3);/*linear-gradient(90deg,rgba(0, 45, 112, 1) 0%, rgba(0, 0, 0, 1) 49%, rgba(0, 45, 112, 1) 100%);*/
}
header h1 {
    font-family:Marley;
    font-size: 1.8rem;
    Xtext-decoration:underline;
    text-shadow: 0 0 5px #ff9900, 0 0 10px #ff9900, 0 0 15px #ff9900;
    color: #fff;
}
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-status {
    font-size: 0.85rem;
    color: #aaa;
}
.user-status.logged-in {
    color: #4ecdc4;
}
.header-btn {
    background: none;
    border: 1px solid #0f3460;
    color: #aaa;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.header-btn:hover {
    border-color: #d17300;
    color: #d17300;
}

/* Options menu container */
.options-container {
    position: relative;
}
#options-btn,
#fullscreen-btn {
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#options-btn svg,
#fullscreen-btn svg {
    display: block;
}

/* Options dropdown menu */
.options-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #1a1a2e;
    border: 1px solid #0f3460;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    min-width: 150px;
    z-index: 1000;
    overflow: hidden;
}
.options-menu.active {
    display: block;
}
.options-menu button {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}
.options-menu button:hover {
    background: rgba(209, 115, 0, 0.2);
    color: #d17300;
}
.options-menu hr {
    border: none;
    border-top: 1px solid #0f3460;
    margin: 0;
}

#chat {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    Xbackground:rgba(0,0,0,.1);
    border-radius:1vmin;
    scrollbar-color: #f90 rgba(0, 45, 112, 1);
    scrollbar-width: thin;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.message a {
    color: #d17300;
}
.user {
    background: rgba(255,255,255,.1);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.user:hover {
    background: rgba(255,255,255,.3);
}
.assistant {
    background: rgba(0,0,0,.2);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.error {
    background: #460f0f;
    align-self: center;
    color: #ff6b6b;
}
#input-area {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    Xbackground: rgba(0,0,0,.3);
}
#prompt {
    flex: 1;
    padding: 12px 15px;
    border: 0px solid #0f3460;
    border-radius: 8px;
    background: rgba(255,153,0,.2);
    color: #eee;
    font-size: 1rem;
    resize: none;
    min-height: 50px;
    max-height: 150px;
}
#prompt:focus {
    outline: none;
    border-color: #d17300;
    box-shadow: 0 0 0 2px rgba(209, 115, 0, 0.3);
}
#input-container.drag-hover #prompt {
    min-height: 100px;
    transition: min-height 0.15s ease-out;
}
#send {
    padding: 12px 25px;
    background: #d17300;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
#send:hover {
    background: #ff6b6b;
}
#send:disabled {
    background: #555;
    cursor: not-allowed;
}
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #eee;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: #16213e;
    border-radius: 12px;
    padding: 25px;
    min-width: 320px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid #0f3460;
}
.modal h2 {
    color: #d17300;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.modal-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
    color: #eee;
    font-size: 1rem;
    margin-bottom: 15px;
}
.modal-input:focus {
    outline: none;
    border-color: #d17300;
}
.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.modal-btn {
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
}
.modal-btn.primary {
    background: #d17300;
    color: white;
}
.modal-btn.secondary {
    background: #0f3460;
    color: #aaa;
}
.modal-btn:hover {
    opacity: 0.9;
}
.modal-error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.modal-error.success {
    color: #4ecdc4;
}

/* Settings panel */
.settings-section {
    margin-bottom: 20px;
}
.settings-section h3 {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #0f3460;
}
.setting-label {
    color: #eee;
}
.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    font-size: 12px;
    color: #4ecdc4;
    cursor: help;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
}
.info-icon:hover {
    color: #d17300;
}
.setting-control select {
    padding: 8px 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
    color: #eee;
    font-size: 0.9rem;
}
.setting-control select:focus {
    outline: none;
    border-color: #d17300;
}
.toggle {
    width: 50px;
    height: 26px;
    background: #0f3460;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}
.toggle.active {
    background: #d17300;
}
.toggle::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: left 0.2s;
}
.toggle.active::after {
    left: 26px;
}

/* Range slider styles */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: #0f3460;
    border-radius: 4px;
    height: 6px;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #d17300;
    border-radius: 50%;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #d17300;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}
input[type="range"]:focus {
    outline: none;
}

.disabled-setting {
    opacity: 0.5;
    pointer-events: none;
}
.setting-value-readonly {
    color: #d17300;
    font-size: 0.9rem;
}

/* Image attachment styles */
#input-container {
    flex-shrink: 0;
}
#thumbnail-preview {
    display: none;
    padding: 10px 20px 0 20px;
    background: #16213e;
}
#thumbnail-preview.active {
    display: block;
}
.thumbnail-wrapper {
    position: relative;
    display: inline-block;
}
.thumbnail-wrapper img {
    max-width: 120px;
    max-height: 80px;
    border-radius: 8px;
    border: 1px solid #0f3460;
}
.thumbnail-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #d17300;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail-remove:hover {
    background: #ff6b6b;
}
.thumbnail-uploading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.85rem;
}
#attach-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background 0.2s;
}
#attach-btn:hover {
    background: #0f3460;
}
#attach-btn svg {
    width: 24px;
    height: 24px;
    fill: #aaa;
    transition: fill 0.2s;
}
#attach-btn:hover svg {
    fill: #d17300;
}
#attach-btn.has-image svg {
    fill: #4ecdc4;
}
#file-input {
    display: none;
}

/* Rules button and modal */
#rules-btn {
    background: none;
    border: 1px solid rgba(255,153,0,.2);
    color: #888;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: none;
}
#rules-btn:hover {
    border-color: #d17300;
    color: #d17300;
}
#rules-btn.active {
    color: #ff9900;
    border-color: #ff9900;
    background:rgba(255,153,0,.2);
}
.rules-section {
    margin-bottom: 20px;
}
.rules-section h3 {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.rules-empty {
    color: #666;
    font-style: italic;
    padding: 20px 0;
    text-align: center;
}
.rule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #0f3460;
    gap: 10px;
}
.rule-toggle {
    flex-shrink: 0;
}
.rule-text {
    flex: 1;
    color: #eee;
    word-break: break-word;
    font-size: 0.9rem;
}
.rule-text.inactive {
    color: #666;
}
.rule-delete {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
    flex-shrink: 0;
}
.rule-delete:hover {
    color: #ff6b6b;
}

/* Nuggets button and modal */
#nuggets-btn {
    background: none;
    border: 1px solid rgba(255,153,0,.2);
    color: #888;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: none;
}
#nuggets-btn:hover {
    border-color: #d17300;
    color: #d17300;
}
#nuggets-btn.active {
    color: #ff9900;
    border-color: #ff9900;
    background:rgba(255,153,0,.2);
}
.nuggets-category {
    margin-bottom: 20px;
}
.nuggets-category h3 {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.nuggets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.nugget-chip {
    background: #0f3460;
    border: 1px solid #1a4a7a;
    color: #888;
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.nugget-chip:hover {
    border-color: #d17300;
    color: #ccc;
}
.nugget-chip.active {
    background: #2a1a00;
    border-color: #d17300;
    color: #d17300;
}
.nuggets-empty {
    color: #666;
    font-style: italic;
    padding: 20px 0;
    text-align: center;
}

/* Dimensions section in nuggets modal */
.dimensions-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #0f3460;
}
.dimensions-section h3 {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.dimensions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.dimension-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dimension-field label {
    font-size: 0.75rem;
    color: #888;
}
.dimension-field input {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
    color: #eee;
    font-size: 0.9rem;
    text-align: center;
}
.dimension-field input:focus {
    outline: none;
    border-color: #d17300;
}
.dimension-x {
    color: #888;
    font-size: 1.2rem;
    margin-top: 18px;
}
.dimension-presets {
    display: flex;
    gap: 6px;
    margin-left: 10px;
    margin-top: 18px;
}
.preset-btn {
    background: #0f3460;
    border: 1px solid #1a4a7a;
    color: #888;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s;
}
.preset-btn:hover {
    border-color: #d17300;
    color: #d17300;
}
.preset-btn.active {
    background: #2a1a00;
    border-color: #d17300;
    color: #d17300;
}
.upscale-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}
.upscale-label {
    color: #eee;
    font-size: 0.9rem;
}
#preset-dropdown-container select {
    padding: 8px 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
    color: #eee;
    font-size: 0.9rem;
    min-width: 160px;
}
#preset-dropdown-container select:focus {
    outline: none;
    border-color: #d17300;
}
#custom-dimensions-container {
    margin-left: 0;
}

/* Button icons - hidden by default (desktop) */
.btn-icon {
    display: none;
    width: 24px;
    height: 24px;
}

/* Mobile styles */
body.mobile {
    max-width: 100%;
}

body.mobile header {
    max-width: 100%;
}

body.mobile #rules-btn,
body.mobile #nuggets-btn {
    padding: 8px;
    border-radius: 6px;
    background: rgba(0,0,0,.2);
    color: #888;
    border: 1px solid rgba(255,153,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.mobile #rules-btn:hover,
body.mobile #nuggets-btn:hover {
    border-color: #d17300;
    color: #d17300;
}

body.mobile #rules-btn.active,
body.mobile #nuggets-btn.active {
    background: rgba(255,153,0,.2);
    color: #ff9900;
    border-color: #ff9900;
}

body.mobile #send {
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.mobile .btn-text {
    display: none;
}

body.mobile .btn-icon {
    display: block;
}

body.mobile #prompt {
    min-height: 40px;
    max-height: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

/* Mobile Prompt Modal */
.prompt-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
}

#prompt-modal-input {
    flex: 1;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #eee;
    font-size: 1.1rem;
    font-family: inherit;
    resize: none;
    line-height: 1.6;
}

#prompt-modal-input:focus {
    outline: none;
}

#prompt-modal-input::placeholder {
    color: #666;
}

/* Scroll to bottom button */
.scroll-bottom-btn {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,153,0,.2);
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, border-color 0.2s, color 0.2s;
    z-index: 100;
}

.scroll-bottom-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-bottom-btn:hover {
    border-color: #d17300;
    color: #d17300;
}

.scroll-bottom-btn svg {
    width: 24px;
    height: 24px;
}

/* Offline message */
#offline-message {
    display: none;
    position: fixed;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vh;
    height: calc(100vh - 52px - 60px);
    justify-content: center;
    align-items: center;
    z-index: 50;
}

#offline-message.visible {
    display: flex;
}

.offline-content {
    text-align: center;
    padding: 40px;
}

.offline-logo {
    width: 80px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.8;
}

.offline-content p {
    font-size: 1.4rem;
    color: #aaa;
    margin: 0;
}

.offline-content .offline-subtext {
    font-size: 1rem;
    color: #666;
    margin-top: 16px;
}

/* Offline mode input styling */
#input-container.offline {
    opacity: 0.5;
    pointer-events: none;
}

/* Profile modal styles */
.profile-form {
    margin-bottom: 20px;
}
.profile-field {
    margin-bottom: 15px;
}
.profile-field label {
    display: block;
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 5px;
}
.profile-field .modal-input {
    margin-bottom: 0;
}
.profile-row {
    display: flex;
    gap: 10px;
}
.profile-row .profile-field {
    margin-bottom: 15px;
}
.profile-field select.modal-input {
    padding: 11px 12px;
}
.coords-display {
    padding: 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
}
.coords-none {
    color: #666;
    font-style: italic;
}
.coords-link {
    color: #4ecdc4;
    text-decoration: none;
    display: none;
}
.coords-link:hover {
    color: #d17300;
    text-decoration: underline;
}

/* Memory section in Profile modal */
.memory-section {
    padding: 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
}
.memory-description {
    color: #888;
    font-size: 0.85rem;
    margin: 0 0 12px 0;
}

/* Memory Console Modal */
.memory-console {
    min-width: 60vw;
    max-height: 90vh;
}
@media (max-width: 768px) {
    .memory-console {
        width: 100vw;
        min-width: 100vw;
        border-radius: 0;
    }
}

.memory-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    max-height: 60vh;
    overflow-y: auto;
}
.memory-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.memory-table th {
    background: #0f3460;
    color: #d17300;
    padding: 10px 8px;
    text-align: left;
    white-space: nowrap;
    position: sticky;
    top: 0;
}
.memory-table th.sortable {
    cursor: pointer;
    user-select: none;
}
.memory-table th.sortable:hover {
    background: #1a4a80;
}
.memory-table th .tooltip {
    display: none;
    position: absolute;
    background: #1a1a2e;
    border: 1px solid #d17300;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #eee;
    font-weight: normal;
    z-index: 1000;
    max-width: 250px;
    white-space: normal;
    top: 100%;
    left: 0;
    margin-top: 4px;
}
.memory-table th:hover .tooltip {
    display: block;
}
.memory-table td {
    padding: 8px;
    border-bottom: 1px solid #0f3460;
    color: #eee;
    vertical-align: top;
}
.memory-table tr:hover td {
    background: rgba(209, 115, 0, 0.1);
}
.memory-table .fact-value {
    max-width: 300px;
    word-break: break-word;
}
.memory-table .fact-key {
    color: #4ecdc4;
    font-family: monospace;
}
.memory-table .fact-type {
    text-transform: capitalize;
}
.memory-table .permanence-permanent {
    color: #4ecdc4;
}
.memory-table .permanence-stable {
    color: #f7d794;
}
.memory-table .permanence-temporal {
    color: #ff6b6b;
}
.memory-table .confidence-high {
    color: #4ecdc4;
}
.memory-table .confidence-medium {
    color: #f7d794;
}
.memory-table .confidence-low {
    color: #ff6b6b;
}
.memory-table .datetime {
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
}
.memory-table .actions {
    white-space: nowrap;
}
.memory-table .actions button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    margin-right: 4px;
    border-radius: 4px;
    font-size: 0.85rem;
}
.memory-table .actions .edit-btn {
    color: #4ecdc4;
}
.memory-table .actions .edit-btn:hover {
    background: rgba(78, 205, 196, 0.2);
}
.memory-table .actions .delete-btn {
    color: #ff6b6b;
}
.memory-table .actions .delete-btn:hover {
    background: rgba(255, 107, 107, 0.2);
}
.memory-empty {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

/* Memory Dropdowns */
.memory-dropdown {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: inherit;
    padding: 2px 4px;
    font-size: 0.8rem;
    cursor: pointer;
    width: 100%;
}
.memory-dropdown:hover {
    border-color: #d17300;
}
.memory-dropdown:focus {
    outline: none;
    border-color: #d17300;
}
.memory-dropdown option {
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Memory Edit Modal */
.memory-edit-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.memory-edit-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.memory-edit-field label {
    color: #aaa;
    font-size: 0.85rem;
}
.memory-edit-field .field-hint {
    color: #666;
    font-size: 0.75rem;
    margin-top: 2px;
}
.memory-edit-field input,
.memory-edit-field select,
.memory-edit-field textarea {
    padding: 10px 12px;
    border: 1px solid #0f3460;
    border-radius: 6px;
    background: #1a1a2e;
    color: #eee;
    font-size: 0.9rem;
}
.memory-edit-field textarea {
    min-height: 80px;
    resize: vertical;
}
.memory-edit-field input:focus,
.memory-edit-field select:focus,
.memory-edit-field textarea:focus {
    outline: none;
    border-color: #d17300;
}
