/* GC Logo Container */
.n3tnit-logo-container-GLOBAL {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* gc img */
.n3tnit-logo-img-GLOBAL {
    height: 30px;
    width: 30px;
    object-fit: cover;
}

/* gc text */
.n3tnit-logo-text-GLOBAL {
    font-size: 12px;
}

/* Profile Tier Badge */
.profile-tier-badge-GLOBAL {
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    user-select: none;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* Light Theme Badges (Default) */
html:not(.dark) .user-tier-badge-free-GLOBAL {
    background-color: #fff9e6;
    border: 1px solid #ffe399;
    color: #b28200;
    box-shadow: 0 2px 6px rgba(178, 130, 0, 0.08);
}

html:not(.dark) .user-tier-badge-pro-GLOBAL {
    background-color: #e8fcf0;
    border: 1px solid #b3f5d0;
    color: #008f43;
    box-shadow: 0 2px 6px rgba(0, 143, 67, 0.08);
}

html:not(.dark) .user-tier-badge-ultra-GLOBAL {
    background-color: #f7e6ff;
    border: 1px solid #ebbfff;
    color: #7900b3;
    box-shadow: 0 2px 6px rgba(121, 0, 179, 0.08);
}

html:not(.dark) .user-tier-badge-special-GLOBAL {
    background-color: #fff2e6;
    border: 1px solid #ffdfbf;
    color: #d35400;
    box-shadow: 0 2px 6px rgba(211, 84, 0, 0.08);
}

html:not(.dark) .user-tier-badge-admin-GLOBAL {
    background-color: #ffebeb;
    border: 1px solid #ffcccc;
    color: #c0392b;
    box-shadow: 0 2px 6px rgba(192, 57, 43, 0.08);
}

/* Dark Theme Badges */
html.dark .user-tier-badge-free-GLOBAL {
    background-color: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
}

html.dark .user-tier-badge-pro-GLOBAL {
    background-color: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.15);
    text-shadow: 0 0 4px rgba(0, 230, 118, 0.4);
}

html.dark .user-tier-badge-ultra-GLOBAL {
    background-image: linear-gradient(135deg, rgba(177, 0, 255, 0.12), rgba(121, 40, 202, 0.2));
    border: 1px solid rgba(177, 0, 255, 0.3);
    color: #df80ff;
    box-shadow: 0 0 10px rgba(177, 0, 255, 0.15);
    text-shadow: 0 0 4px rgba(177, 0, 255, 0.4);
}

html.dark .user-tier-badge-special-GLOBAL {
    background-color: rgba(211, 84, 0, 0.12);
    border: 1px solid rgba(211, 84, 0, 0.35);
    color: #e67e22;
    box-shadow: 0 0 10px rgba(211, 84, 0, 0.15);
    text-shadow: 0 0 4px rgba(211, 84, 0, 0.4);
}

html.dark .user-tier-badge-admin-GLOBAL {
    background-color: rgba(255, 76, 76, 0.1);
    border: 1px solid rgba(255, 76, 76, 0.3);
    color: #ff4c4c;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.15);
    text-shadow: 0 0 4px rgba(255, 76, 76, 0.4);
}

/* Badge Count */
.badge-count-GLOBAL {
    position: absolute;
    top: -5px;
    right: -5px;
    margin: 0;
    background-color: #ff7675;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Link button */
.link-btn-GLOBAL {
    color: var(--link-color);
    text-decoration: none;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s;
}

/* Link button hover */
.link-btn-GLOBAL:hover {
    opacity: 1;
    transform: scale(1.02);
    text-decoration: underline;
}

/* Textarea box container */
.textarea-box-master-GLOBAL {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    font-size: 13px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;

}

/* Textarea Box Container Hover */
body[data-rds-mode="desktop"] .textarea-box-master-GLOBAL:hover {
    box-shadow: 0 10px 35px rgb(109, 109, 109);
    transform: translateY(-6px);
}

/* Dark Theme Textarea Box Container */
html.dark body[data-rds-mode="desktop"] .textarea-box-master-GLOBAL:hover {
    box-shadow: 0 10px 35px rgb(1, 107, 156);
    transform: translateY(-6px);
}

/* Textarea Box */
.textarea-box-child-GLOBAL {
    display: flex;
    flex: 1;
    min-height: 0;
    width: 100%;
    position: relative;
}

/* Textarea permanent styling */
.textarea-GLOBAL {
    font-family: 'Inter', sans-serif;
    width: 100%;
    height: 100%;
    background-color: var(--bg-input);
    color: var(--text-primary);
    padding: 15px !important;
    resize: none;
    outline: none;
    border: none;
    line-height: 1.5 !important;
}

/* Line-numbers permanent styling */
.line-numbers-GLOBAL {
    font-family: 'Inter', sans-serif;
    padding: 15px !important;
    color: var(--text-muted);
    text-align: right;
    height: 100%;
    line-height: 1.5 !important;
    background-color: var(--bg-input);
    border-right: 1px solid var(--border-color);
    overflow: hidden;
}

.circle-icon-GLOBAL {
    background: var(--bg-gradient-icon-theme);
    box-shadow: var(--shadow-theme);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    flex-shrink: 0;
}

.circle-icon-GLOBAL:hover {
    box-shadow: var(--hover-shadow-theme);
}