/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.emoji-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.emoji-item:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.emoji-item label {
    display: block;
    cursor: pointer;
    margin-bottom: 8px;
}

.emoji-preview {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.emoji-name {
    display: block;
    font-size: 12px;
    color: #666;
}

.emoji-custom-name {
    width: 100%;
    padding: 5px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-top: 5px;
}

.emoji-custom-name:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.emojfopo-preview {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.preview-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px dashed #ddd;
}

.emojfopo-container {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.emojfopo-title {
    margin-right: 10px;
    font-weight: bold;
}

.emojfopo-buttons {
    display: flex;
    flex-wrap: wrap;
}

.emojfopo-reaction-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px 10px 0;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.emojfopo-reaction-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.emojfopo-reaction-button .emoji {
    font-size: 20px;
    margin-bottom: 2px;
}

.emojfopo-reaction-button .count {
    font-size: 12px;
    color: #666;
}

.emojfopo-stats {
    margin-top: 30px;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
