button {
    background-color: #097bed !important;
}

.emoji-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.emoji-table th,
.emoji-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.emoji-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.emoji-table tr:hover {
    background-color: #f5f5f5;
}

.emoji-char {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.emoji-char {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.emoji-search-container {
    display: flex;
    justify-content: center;
}

#emojiSearch:focus {
    outline: none;
    border-color: #097bed;
    box-shadow: 0 0 0 2px rgba(9, 123, 237, 0.2);
}

#loadMoreBtn:hover {
    background-color: #0868c7 !important;
}

.copy-emoji-btn:hover i {
    color: #097bed !important;
}

tr:hover {
    background-color: #f8f9fa !important;
}

.fa-copy,
.fa-check {
    transition: color 0.2s ease;
}



.emoji-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.emoji-text {
    flex: 1;
}

.emoji-block {
    flex: 0 0 50%;
    text-align: center;
}

.emoji-icon {
    font-size: 100px;
}

.emoji-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.emoji-buttons button {
    padding: 8px 14px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.emoji-buttons button:hover {
    background-color: #0056b3;
}

.emoji-buttons button.copied {
    background-color: #28a745;
}

@media (max-width: 768px) {
    .emoji-container {
        flex-direction: column;
        text-align: center;
    }

    .emoji-block {
        width: 100%;
    }

    .emoji-icon {
        font-size: 20vw;
    }

    .emoji-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .emoji-table {
        font-size: 14px;
    }

    .emoji-char {
        font-size: 20px;
    }

    .emoji-table th,
    .emoji-table td {
        padding: 8px 10px;
    }
}