.box-options {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.box-options .option {
    background: #e8f0fe;
    color: #1e40af;
    border-radius: 25px;
    padding: 6px 14px;
    margin: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.box-options .option:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.box-options .option i {
    color: #0070c0;
    font-size: 15px;
}
