/* Suggest improvement button + overlay */

.ls-suggest-toggle {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(229, 192, 123, 0.25);
    background: rgba(13, 17, 23, 0.92);
    color: #8b949e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ls-suggest-toggle:hover {
    color: #e5c07b;
    border-color: rgba(229, 192, 123, 0.5);
    background: rgba(229, 192, 123, 0.1);
    transform: scale(1.05);
}
.ls-suggest-toggle svg {
    width: 18px;
    height: 18px;
}

.ls-suggest-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-suggest-form {
    width: 420px;
    max-width: 90vw;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.ls-suggest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: #0d1117;
    border-bottom: 1px solid #30363d;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5c07b;
}

.ls-suggest-close {
    background: none;
    border: none;
    color: #8b949e;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 0.3rem;
    line-height: 1;
}
.ls-suggest-close:hover { color: #e6edf3; }

.ls-suggest-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ls-suggest-slide-info {
    font-size: 0.78rem;
    color: #8b949e;
    font-family: monospace;
}

.ls-suggest-category {
    padding: 0.4rem 0.6rem;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 5px;
    color: #e6edf3;
    font-size: 0.82rem;
}
.ls-suggest-category:focus { outline: none; border-color: #e5c07b; }

.ls-suggest-text {
    width: 100%;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 5px;
    color: #e6edf3;
    padding: 0.5rem 0.6rem;
    font-size: 0.82rem;
    font-family: inherit;
    line-height: 1.4;
    resize: vertical;
}
.ls-suggest-text:focus { outline: none; border-color: #e5c07b; }

.ls-suggest-submit {
    padding: 0.45rem 1.2rem;
    background: #e5c07b;
    color: #0d1117;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.15s;
}
.ls-suggest-submit:hover { background: #f0d090; }
.ls-suggest-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.ls-suggest-status {
    font-size: 0.78rem;
    min-height: 1em;
}
