* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Customize Shoelace Theme */

:host,
.sl-theme-dark {
    --sl-color-primary-500: #aaaaaa;
    --sl-color-primary-600: #aaaaaa;
    --sl-color-primary-700: #aaaaaa;
    --sl-color-primary-800: #aaaaaa;
    --sl-color-primary-900: #aaaaaa;
}


/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
    border-radius: 0 !important;
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb) !important;
    border-radius: 0 !important;
    border: none !important;
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover) !important;
    border-radius: 0 !important;
    border-radius: 0px !important;
}

::-webkit-scrollbar-corner {
    background: var(--scrollbar-track);
    border-radius: 0 !important;
    border-radius: 0px !important;
}

/* Additional specificity for webkit browsers */
::-webkit-scrollbar-thumb:vertical {
    border-radius: 0 !important;
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb:horizontal {
    border-radius: 0 !important;
    border-radius: 0px !important;
}

/* Firefox scrollbar styles */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

body {
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Verdana, sans-serif;
    overflow: hidden;
    background-color: var(--body-bg);
}

app-main {
    position: absolute;
    inset: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.app-wrapper {
    position: absolute;
    inset: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 1000;
    background-color: #3b3220;
    opacity: 1;
}

.app-wrapper.hidden {
    opacity: 0; 
    pointer-events: none;
}

.header {
    font-family: 'Sansation', sans-serif;
    width: 100%;
    height: 70px;
    background: var(--header-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 90%);
    border-bottom: 1px solid #392e0f;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0px 0px 0px 10px;
    border: 2px inset var(--header-inner-border);
    border-radius: 10px;
    box-shadow: inset 10px 10px 20px rgb(0 0 0);
    background-color: var(--header-inner-bg);
}

.header-inner.messagebar-open {
    background: repeating-linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(231, 76, 60, 0.8) 10px, rgba(211, 56, 40, 0.9) 10px, rgba(211, 56, 40, 0.9) 20px), url(/images/texture1.png);
    color: #fff;
    animation: barberpole 60s infinite linear;
    background-size: 28px 100%;
}

.header-inner-left {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.header-inner-center {
    flex-grow: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header-message-container {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-message {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Header message states - animation applied to header-inner */
.header-message-error {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-message-loading {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-message-success {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.header-message-server-action {
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Header-inner animation states */
.header-inner.header-error {
    background: repeating-linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(231, 76, 60, 0.8) 10px, rgba(211, 56, 40, 0.9) 10px, rgba(211, 56, 40, 0.9) 20px);
    animation: barberpole 60s infinite linear;
    background-size: 28px 100%;
}

.header-inner.header-loading {
    background: repeating-linear-gradient(135deg, rgba(78, 205, 196, 0.8), rgba(78, 205, 196, 0.8) 10px, rgba(78, 185, 176, 0.9) 10px, rgba(78, 185, 176, 0.9) 20px);
    box-shadow: 0px 1px 5px rgb(78, 205, 196 / 50%);
}

.header-inner.header-success {
    background: repeating-linear-gradient(135deg, rgba(39, 174, 96, 0.8), rgba(39, 174, 96, 0.8) 10px, rgba(19, 154, 76, 0.9) 10px, rgba(19, 154, 76, 0.9) 20px);
    animation: barberpole 60s infinite linear;
    background-size: 28px 100%;
}

.header-inner.header-server-action {
    background: repeating-linear-gradient(135deg, rgba(156, 156, 156, 0.8), rgba(156, 156, 156, 0.8) 10px, rgba(136, 136, 136, 0.9) 10px, rgba(136, 136, 136, 0.9) 20px);
    box-shadow: 0px 1px 5px rgb(156, 156, 156 / 50%);
}

.header-inner.header-pending {
    background: repeating-linear-gradient(135deg, rgba(243, 156, 18, 0.8), rgba(243, 156, 18, 0.8) 10px, rgba(223, 136, 8, 0.9) 10px, rgba(223, 136, 8, 0.9) 20px);
    animation: barberpole 60s infinite linear;
    background-size: 28px 100%;
}

.header-inner.header-animated {
    animation: barberpole 60s infinite linear;
}

.header-inner-right {
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header-username {
    cursor: pointer;
    color: var(--header-username);
    font-size: 12px;
    /* filter: drop-shadow(2px 2px 2px #000000); */
    margin-right: 10px;
}

.header-username:hover {
    color: #ffffff;
}

.app-messagebar {
    box-shadow: 0px 10px 15px rgb(0 0 0 / 90%);
    padding: 15px;
    font-size: 14px;
    border-bottom: 2px solid color(srgb 1 1 1 / 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    position: absolute;
    top: 70px;
    left: 1px;
    right: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 700;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Only show messagebar for confirmations */


.app-messagebar.confirmation-only.app-messagebar-confirmation {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.app-messagebar.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.messagebar-message {
    font-weight: 500;
    text-align: center;
    flex: 1;
    color: #404040;
}

/* These styles are now moved to header messages */

/* Confirmation dialog styles */
.app-messagebar-confirmation {
    background-color: #6f5b41;
    color: #fff;
}

.app-messagebar-confirmation .messagebar-message {
    color: #eeeeee;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    flex: 1;
    flex-direction: column;
}

.confirm-btn:active {
    border: 1px inset #9a9a9a;
    box-shadow: inset 4px 4px 10px color(srgb 0 0 0 / 0.9);
}

.confirm-btn:hover {
    border: 1px solid #eeeeee;
}

.confirm-btn:focus-visible {
    outline: 2px solid #f6b04d;
}

.confirm-btn {
    padding: 8px 16px;
    border: 1px solid color(srgb 0.87 0.87 0.87 / 0.5);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.confirm-btn-danger {
    background-color: #dc3545;
    color: white;
}

.confirm-btn-cancel {
    background-color: #6c757d;
    color: white;
}

.confirmation-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirmation-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    flex-shrink: 0;
}

.confirmation-input-field {
    padding: 10px 12px;
    border: 2px inset #eeeeee;
    box-shadow: inset 4px 4px 10px color(srgb 0 0 0 / .9);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #e6e6e6;
    color: #4e4e4e;
    box-sizing: border-box;
    min-width: 200px;
}

.confirmation-input-field:focus {
    outline: none;
    border-color: #f5be2f;
}

.confirmation-input-field::placeholder {
    color: #999;
}

/* Animation is now handled by header messages */

@keyframes barberpole {
    from {background-position: 0%;}
    to {background-position: 100%;}
}

.loading-bubbles {
    position: absolute;
    inset: 0;
}

.loading-container.loading-open {
    display: block;
    opacity: 1;
}

.loading-container {
    background-color: var(--loading-overlay);
    position: absolute;
    inset: 0;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease-in-out;
}

.loading-overlay {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--loading-overlay-text);
    font-family: 'Sansation', sans-serif;
    font-size: 30px;
    text-align: center;
    /* text-shadow: 0px 0px 5px var(--loading-overlay-shadow); */
}

.app-logo {
    width: 76px;
    padding-top: 0px;
    height: auto;
    filter: drop-shadow(-2px 2px 2px #000000ee) brightness(1.3);
}

.logo {
    width: 32px;
    height: 32px;
    background: var(--logo-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-text);
    font-weight: bold;
    font-size: 16px;
}

.brand-name {
    color: var(--brand-name);
    font-size: 14px;
    filter: drop-shadow(2px 2px 2px #000000);
}

.header-icon {
    width: 42px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    color: var(--header-icon-text);
    border: none;
    background: none;
    border-radius: 0px;
    padding: 5px;
    border-left: 1px groove var(--header-icon-border);
}

.header-icon:last-child {
    border-radius: 0px 10px 10px 0px;
}
.active-toolbar {
    box-shadow: inset 3px 3px 10px rgb(0 0 0 / 90%);
    background: var(--active-toolbar-bg);
    color: var(--active-toolbar-text);
}

.header-icon:hover {
    background-color: var(--header-icon-bg);
}

.header-icon sl-icon {
    position: relative;
    top: 1px;
    font-size: 18px;
}

.header-icon:hover sl-icon {
    color: var(--header-icon-hover-text);
}

.dropdown-menu {
    border-left: 3px groove #474747;
    position: fixed;
    font-size: 12px;
    top: 70px;
    bottom: 0;
    right: -100%;
    width: 250px;
    backdrop-filter: blur(10px);
    z-index: 900;
    transition: right 0.3s ease;
    box-shadow: -5px 0px 20px var(--dropdown-menu-shadow);
    background-color: color(srgb 0.1 0.08 0.05 / 0.8);
    overflow-y: auto;
}

.dropdown-menu.open {
    right: 0;
}

.menu-resize-handle {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    cursor: ew-resize;
    background-color: transparent;
    transition: background-color 0.2s ease;
}

.menu-resize-handle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.menu-resize-handle:active {
    background-color: rgba(255, 255, 255, 0.3);
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: absolute;
    inset: 0;
}

.menu-header {
    height: 45px;
    padding: 10px 10px 10px 15px;
    background-color: color(srgb 0.54 0.5 0.39 / 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    display: flex;
    gap: 10px;
    color: var(--menu-title);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    align-items: center;
}
.menu-content {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    align-items: center;    
    padding: 0px 10px 10px 10px;
}

.menu-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    overflow: auto;
    border: 1px solid #655630d1;
    margin: 0px 10px 0px 10px;
    border-radius: 10px;
}

.menu-group-active {
    border: 1px dashed #b1871d;
}

.menu-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 5px 10px;
    border-bottom: 1px solid #584a29;
    background-color: #46360d57;  
}

.workspace-action-btn {
    position: relative;
    top: 2px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--menu-link-text);
}

.workspace-actions {
    display: flex;
    gap: 10px;
}

.workspace-action-btn:hover {
    color: #eeeeee;
}

.window-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.menu-item-actions, .window-menu-actions {
    display: flex;
    gap: 4px;
    padding-right: 10px;
}

.window-menu-item:hover .window-menu-actions {
    opacity: 1;
}

.window-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    border-radius: 3px;
    color: var(--menu-link-text);
    font-size: 12px;
}

/* .window-action-btn:hover {
    background: var(--menu-item-hover-bg);
} */

.window-action-btn:hover {
    color: #eeeeee;
}

.active-indicator {
    color: var(--menu-active-color, #3b82f6);
    font-weight: 600;
    font-size: 11px;
}

.menu-item-active {
    background: var(--menu-active-item-bg, rgba(59, 130, 246, 0.1));
}

.menu-item-active .menu-link {
    color: var(--menu-active-text, #3b82f6);
}

.menu-group-label {
    flex-grow: 2;
    color: var(--menu-link-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
}

.pin-button {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 5px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-button:hover {
    color: var(--pin-button-hover);
}

.pin-button sl-icon {
    font-size: 12px;
    color: var(--pin-button-text);
    transform: rotateZ(0deg);
    transition: transform 0.3s ease;
}

.pinned {
    color: var(--pin-button-pinned);
}

.pin-button.pinned sl-icon {
    color: var(--pin-button-pinned);
    transform: rotateZ(45deg);
}

.pin-button:hover sl-icon {
    color: var(--pin-button-hover-text);
}

.menu-items {
    margin-top: 0px;
    padding: 0;
    list-style: none;
}

.menu-item {
    list-style: none;
}
.schematics-menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--menu-link-text);
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.window-action-btn.pinned sl-icon {
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Pinned window styles - no header */
.pinned-window {
    border-radius: 8px !important;
}

.pinned-window .window-content {
    border-radius: 8px !important;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}
.menu-link, .user-menu-link, .settings-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--menu-link-text);
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

/* Drag and drop styles */
.menu-link[draggable="true"] {
    cursor: grab;
}

.menu-link[draggable="true"]:active {
    cursor: grabbing;
}

.menu-link.dragging {
    opacity: 0.5;
    transform: scale(0.95);
    background: var(--menu-item-hover, rgba(255, 255, 255, 0.1));
}

/* Workspace drop zone styles */
.workspace {
    position: relative;
}

/* .menu-item:hover, .user-menu-item:hover {
    background: var(--menu-item-hover-bg);
} */

.menu-link sl-icon, .user-menu-link sl-icon {
    font-size: 16px;
    color: var(--menu-icon);
    flex-shrink: 0;
}

.menu-item-failed {
    opacity: 0.8;
}

.menu-item-failed .menu-link {
    color: var(--error-text) !important;
}

.menu-item-failed .menu-link sl-icon {
    color: var(--error-text) !important;
}

.error-icon {
    color: var(--error-text);
    font-size: 14px;
    margin-left: auto;
}

.settings-menu {
    padding: 20px;
    background: var(--settings-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--settings-shadow);
}

.setting-item {
    margin-bottom: 15px;
}

.setting-item label {
    display: block;
    margin-bottom: 5px;
    color: var(--settings-label);
    font-weight: 500;
}

.setting-item sl-switch {
    margin-top: 5px;
}

.setting-item input[type="range"] {
    width: 100%;
    margin-top: 5px;
}

.setting-item span {
    display: block;
    margin-top: 5px;
    color: var(--settings-value);
    font-size: 12px;
}

.mdi-content {
    height: 100%;
    width: 100%;
    background-color: #3b372c;
    box-shadow: inset 0px 0px 20px var(--mdi-content-shadow);
}

.app-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 15px 10px 10px 10px;
    align-items: center;
    background-color: #8a805d;
}

.login-page {
    font-family: 'Sansation', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.login-page bubbles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-card {
    user-select: none;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 20px rgb(0 0 0);
    border: 3px outset rgb(200 200 200 / 20%);
    min-width: 400px;
    background: var(--login-bg);
    backdrop-filter: blur(10px);
}

.login-card {
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 10px 20px rgb(0 0 0);
    border: 3px outset rgb(200 200 200 / 20%);
    min-width: 400px;
}

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

.login-logo {
    width: 100px;
    height: 102px;
    margin: 0 auto 20px;
    display: block;
    user-select: none;
}

.login-title {
    color: var(--login-title);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-subtitle {
    color: var(--login-subtitle);
    font-size: 14px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    color: var(--login-title);
    font-size: 14px;
}

.login-footer a {
    color: var(--login-link);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-button{
    cursor: pointer;
    width: 120px;
    border: 2px solid var(--login-button-border) !important;
    color: var(--login-button-text) !important;
    background-color: var(--login-button-bg);
    margin-top: 20px;
    padding: 5px;
    border-radius: 5px;
}

.login-button:active {
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0) !important;
    outline: none !important;
    outline-offset: 0 !important;
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.65) !important;
    background-color: var(--login-button-active-bg) !important;
    background-image: none !important;
    border: 2px inset var(--login-button-active-border) !important;
    color: var(--login-button-text) !important;
}

.form-group {
    position: relative;
}

.form-input {
    color: var(--form-input-text);
    padding: 10px;
    border: 2px inset #666;
    background-color: var(--form-input-bg);
    border: 2px inset var(--form-input-border);
    box-shadow: inset 5px 5px 10px var(--form-input-shadow);
    border-radius: 10px;
    width: 250px;
    outline: none !important;
    transition: var(--transition-normal);
    box-sizing: border-box;
    box-shadow: inset 5px 5px 10px var(--form-input-shadow) !important;
}

.password-container {
    position: relative;
    width: 250px;
}

.password-input {
    padding-right: 50px; /* Make room for the toggle button */
}

.password-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    color: var(--form-input-text);
    transition: var(--transition-normal);
}

.password-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.password-toggle:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

.eye-icon {
    font-size: 16px;
}

.form-input:focus {
    outline: none !important;
    border: 2px inset var(--form-input-border) !important;
    background-color: var(--form-input-bg) !important;
    box-shadow: inset 5px 5px 10px var(--form-input-shadow) !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
    border: 2px inset var(--form-input-border) !important;
  -webkit-text-fill-color: var(--form-input-autofill-text);
  -webkit-box-shadow: 0 0 0px 1000px var(--form-input-autofill-bg) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.form-input::placeholder {
    color: var(--form-input-placeholder);
}

/* Drag and Drop Styles for Workspace Tabs */
.menu-group-label {
    transition: all 0.2s ease;
}

.menu-group-label.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.menu-group-label.drop-before {
    border-left: 3px solid var(--primary-color);
    padding-left: 8px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.menu-group-label.drop-after {
    border-right: 3px solid var(--primary-color);
    padding-right: 8px;
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.menu-group-label:hover {
    background-color: rgba(var(--primary-color-rgb), 0.05);
}

/* Workspace Drop Targets */
.workspace-drop-target {
    margin: 0 10px 0 10px;
    padding: 0;
    border: 1px dashed transparent;
    border-radius: 6px;
    transition: all 0.2s ease;
    height: 10px;
    width: 50%;
    overflow: hidden;
}

.workspace-drop-target.drag-active {
    border: 1px dotted rgba(255, 255, 255, 0);
}

.workspace-drop-target.drop-target-active {
    border: 1px dotted rgba(255, 255, 255, 0.8);
    transform: scale(2);
}

.error-message {
    color: var(--error-text);
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.feedback-form-container {
    padding: 10px;
    margin: 0 auto;
}

.feedback-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 600px;
}

.feedback-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feedback-label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.feedback-input, .feedback-textarea {
    padding: 10px 12px;
    border: 2px inset #eeeeee;
    box-shadow: inset 4px 4px 10px color(srgb 0 0 0 / .9);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background-color: #e6e6e6;
    color: #4e4e4e;
    box-sizing: border-box;
    width: 100%;
}

.feedback-input:focus, .feedback-textarea:focus {
    outline: none;
    border-color: #f5be2f;
}

.feedback-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

.feedback-input::placeholder, .feedback-textarea::placeholder {
    color: #999;
}

.feedback-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.feedback-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.feedback-btn-send {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.feedback-btn-send:hover:not(:disabled) {
    background: linear-gradient(135deg, #2980b9, #1f618d);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.feedback-btn-send:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

.feedback-btn-cancel {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    color: white;
}

.feedback-btn-cancel:hover {
    background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
    box-shadow: 0 2px 8px rgba(149, 165, 166, 0.3);
}