.prashantIcon1998 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.prashantIcon1998.show {
    opacity: 1;
}

.prashantIcon1998 .icon-modal {
    background: white;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 2rem;
    box-sizing: border-box;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.prashantIcon1998 .icon-modal.show {
    transform: translateY(0);
    opacity: 1;
}

.prashantIcon1998 .icon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.prashantIcon1998 .icon-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.prashantIcon1998 .icon-header input {
    flex: 1;
    margin: 0 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.prashantIcon1998 .icon-header input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.prashantIcon1998 .icon-close {
    font-size: 1.75rem;
    cursor: pointer;
    color: #666;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.prashantIcon1998 .icon-close:hover {
    background-color: #f5f5f5;
    color: #333;
}

.prashantIcon1998 .icon-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

.prashantIcon1998 .icon-grid i {
    font-size: 1.5rem;
    cursor: pointer;
    text-align: center;
    border-radius: 8px;
    color: #555;
    padding: 10px;
    margin: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
    text-align: center;
}

.prashantIcon1998 .icon-grid i:hover {
    background-color: #f8f9fa;
    color: #4285f4;
    transform: scale(1.1);
}


/* .icon-grid i::after {
    content: attr(title);
    font-size: 0.65rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #777;
    display: block;
    text-align: center;
    word-break: break-word;
    width: 100%;
} */

.prashantIcon1998 .no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .prashantIcon1998 .icon-modal {
        width: 90%;
        height: 90%;
        max-width: 1200px;
        max-height: 800px;
        margin: 5vh auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
}