#gf-box {
    max-width: 900px;
    margin: 0px auto;
    padding: 24px;
    border: 0px solid #eee;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

#gf-box h3 {
    margin-bottom: 16px;
}

#gf-url {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color:#000;
}

#gf-scan {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

#gf-scan:hover {
    background: #7B2AF7;
}

#gf-loader {
    display: none;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.gf-spinner {
    width: 36px;
    height: 36px;
    border: 4px solid #e5e7eb;
    border-top: 4px solid #C06EF8;
    border-radius: 50%;
    animation: gf-spin 0.8s linear infinite;
}

@keyframes gf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#gf-result {
    margin-top: 20px;
}

#gf-bottomtxt {
    display: none;
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
}

.gf-cta {
    display: block;
    padding: 12px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.2s;
}

.gf-cta:hover {
    background: #8C2DF8;
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

/* Issues */

.gf-good {
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #065f46;
}

.gf-bad {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #991b1b;
}

.gf-warning {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #92400e;
}

.gf-neutral {
    color: #6b7280;
    font-weight: 500;
}

/* ikona */
.gf-icon {
    font-weight: bold;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
}

/* Vulns */

#gf-result ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

#gf-result li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

#gf-result li {
    transition: all 0.2s ease;
}

#gf-result li:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

#gf-url:focus {
    outline: none;
    border-color: #7B2AF7;
    box-shadow: 0 0 0 2px rgba(123, 42, 247, 0.1);
}

#gf-result h4 {
    margin-top: 20px;
}

.gf-redirect-notice {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.32);
    color: #92400e;
    border-radius: 10px;
    padding: 14px 16px;
    line-height: 1.5;
}

.gf-redirect-notice p {
    margin: 0;
}

.gf-redirect-text {
    font-size: 16px;
}

.gf-redirect-notice p + p {
    margin-top: 10px;
}

.gf-redirect-url {
    margin: 10px 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(146, 64, 14, 0.18);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    color: #7c2d12;
    word-break: break-all;
    user-select: all;
}

/* SCORE */
.gf-score {
    margin-bottom: 15px;
}

.gf-score-value {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
}

.gf-score-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 999px;
    overflow: hidden;
}

.gf-score-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease;
}

.gf-consent {
    display: block;
    margin: 10px 0;
    font-size: 13px;
    color: #000;
}

.gf-consent a {
    color: #6366f1;
    text-decoration: underline;
}
