/* Emoji Picker Modal - Temiz, karartma yok */
/*
.emoji-picker-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
    padding: 0;
    pointer-events: none;
}
    */

.emoji-picker-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 350px;
    bottom: 72px;
    background: transparent;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
    padding: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .emoji-picker-modal {
        right: 130px;
        bottom: 65px;
    }
}

.emoji-picker-content {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    width: auto;
    border: 1px solid #e9ecef;
    position: relative;
    margin: 0;
    overflow: visible;
    pointer-events: all;
}

/* Sekmeler */
.emoji-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.emoji-tab {
    flex: 1;
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.2s ease;
    border-radius: 8px 8px 0 0;
}

.emoji-tab:hover {
    background: #e9ecef;
    color: #495057;
}

.emoji-tab.active {
    background: white;
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

/* Tab içeriği */
.tab-content {
    padding: 12px;
}

.tab-content.hidden {
    display: none;
}


.emoji-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin-bottom: 12px;
    padding: 0;
    width: fit-content;
}

.emoji-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.15s ease;
    width: 40px;
    height: 40px;
}

.emoji-item:hover {
    border-color: #007bff;
    background: #f8f9fa;
    transform: scale(1.05);
}

.emoji-preview {
    width: 32px;
    height: 32px;
    margin-bottom: 3px;
}



@keyframes slideUpFade {
    from { 
        opacity: 0; 
        transform: translateY(10px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}
