/* Yardim ikon stilleri — help-tooltip.js icin.
   Eskiden JS dinamik <style> bloku enjekte ediyordu; CSP style-src-elem 'self'
   bunu blokladigi icin CSS'i static dosyaya tasidik. */
.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    color: #9aa3ad;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 3px;
    border: 1px solid #c7ced5;
    padding: 0;
    line-height: 1;
    vertical-align: 1px;
    opacity: .75;
    transition: opacity .15s ease, color .15s ease, border-color .15s ease, background .15s ease;
}

.help-icon:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    opacity: 1;
}

.help-icon:focus {
    outline: 2px solid #86b7fe;
    outline-offset: 1px;
    opacity: 1;
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.popover-header.help-popover-header {
    background: #0d6efd;
    color: #fff;
}
