/* Main Modal Styles */
#D4FaIconPicker {
    display: none;
    position: absolute;
    height: 350px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    z-index: 9999;
}

/* Modal Content */
#D4FaIconPicker .modal-content {
    padding: 10px;
    height: 100%;
    box-sizing: border-box;
}

/* Search Input */
.iconSearch {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Style Buttons */
.styleButtons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 8px;
    margin-left: -12px;
    margin-right: -12px;
}

.styleButtons .style-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.styleButtons .style-btn i {
    font-size: 18px;
}

/* Active style button */
.styleButtons .style-btn.active {
    background-color: #007bff; /* Highlight color */
    color: #fff;
    border-color: #007bff;
}

/* Icon Container */
.iconContainer {
    max-height: calc(100% - 120px); /* Adjust max-height to fit within modal */
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.icon-item {
    cursor: pointer;
    text-align: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.icon-item:hover {
    background-color: #f0f0f0;
}
