.korhan-mustafa-imrak-cd-emoji-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: var(--accent, #22d3ee) rgba(30, 41, 59, 0.8);
}
.korhan-mustafa-imrak-cd-emoji-picker::-webkit-scrollbar {
    width: 8px;
}
.korhan-mustafa-imrak-cd-emoji-picker::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 4px;
}
.korhan-mustafa-imrak-cd-emoji-picker::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0e7490 0%, var(--accent, #22d3ee) 100%);
    border-radius: 4px;
}
.korhan-mustafa-imrak-cd-emoji-picker::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0c4a6e 0%, #67e8f9 100%);
}
.korhan-mustafa-imrak-cd-emoji-search-wrap {
    flex-shrink: 0;
    margin-bottom: 8px;
}
.korhan-mustafa-imrak-cd-emoji-search {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.korhan-mustafa-imrak-cd-emoji-search::placeholder {
    color: #94a3b8;
}
.korhan-mustafa-imrak-cd-emoji-search:focus {
    border-color: var(--accent, #22d3ee);
}
.korhan-mustafa-imrak-cd-emoji-grid {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent, #22d3ee) rgba(30, 41, 59, 0.8);
}
.korhan-mustafa-imrak-cd-emoji-grid::-webkit-scrollbar {
    width: 8px;
}
.korhan-mustafa-imrak-cd-emoji-grid::-webkit-scrollbar-track {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 4px;
}
.korhan-mustafa-imrak-cd-emoji-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0e7490 0%, var(--accent, #22d3ee) 100%);
    border-radius: 4px;
}
.korhan-mustafa-imrak-cd-emoji-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0c4a6e 0%, #67e8f9 100%);
}
.korhan-mustafa-imrak-cd-emoji-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 4px;
}
.korhan-mustafa-imrak-cd-emoji-item {
    font-size: 1.4rem;
    padding: 6px;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.korhan-mustafa-imrak-cd-emoji-item:hover {
    background: rgba(34, 211, 238, 0.2);
}
.korhan-mustafa-imrak-cd-emoji-empty {
    padding: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}
.korhan-mustafa-imrak-cd-emoji-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: color 0.2s, background 0.2s;
}
.korhan-mustafa-imrak-cd-emoji-btn:hover {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
}
.korhan-mustafa-imrak-admin-cd-emoji-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: var(--admin-text-muted);
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: color 0.2s, background 0.2s;
}
.korhan-mustafa-imrak-admin-cd-emoji-btn:hover {
    color: var(--cd-accent);
    background: var(--cd-accent-dim);
}
