.feature-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    flex: 1 1 150px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-box .material-icons {
    font-size: 48px;
    margin-bottom: 10px;
    color: #0073aa;
}

.feature-box h2 {
    line-height: 1.2em;
    font-weight: 400;
    font-family: var(--secondary-font);
    letter-spacing: 0.075em;
    text-transform: uppercase;
    margin-bottom:0.5rem;
    font-size: 14px;
    margin: 0;
}

.fb-icon-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
}

.fb-icon {
    cursor: pointer;
    padding: 5px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 32px;
    transition: all 0.2s;
}

.fb-icon:hover {
   /* background: #f0f0f0;*/
   fill:red;
}

.fb-icon-active {
    border-color: #0073aa;
    background: #e6f0fa;
}


.fb-icon svg {
    width: 50px;
    height: 50px;
    fill: currentColor; /* Makes SVG follow text color */
}